2 changed files with 30 additions and 1 deletions
@ -0,0 +1,25 @@ |
|||||
|
package com.elink.esua.epdc.dto; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @auther: zhangyong |
||||
|
* @date: 2021-08-06 15:25 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PartyOrgTypeSelectDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 类型名称 |
||||
|
*/ |
||||
|
private String tagName; |
||||
|
|
||||
|
/** |
||||
|
* 类型编码 |
||||
|
*/ |
||||
|
private String tagValue; |
||||
|
} |
||||
Loading…
Reference in new issue