21 changed files with 308 additions and 1 deletions
@ -0,0 +1,27 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/11/10 2:13 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class OrgInfoFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 4480485864711053393L; |
||||
|
|
||||
|
/** |
||||
|
* org的类型 agency:机关,grid:网格,dept:部门 |
||||
|
*/ |
||||
|
private String orgType; |
||||
|
|
||||
|
/** |
||||
|
* orgId集合 |
||||
|
*/ |
||||
|
private List<String> orgIds; |
||||
|
|
||||
|
} |
@ -0,0 +1,34 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/11/10 2:15 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class OrgInfoResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 7478605833438304330L; |
||||
|
|
||||
|
private String orgId; |
||||
|
|
||||
|
private String orgName; |
||||
|
|
||||
|
/** |
||||
|
* orgType 为空时,此字段为空 |
||||
|
*/ |
||||
|
private String agencyId; |
||||
|
|
||||
|
private String pid; |
||||
|
|
||||
|
private String pids; |
||||
|
|
||||
|
private String allParentName; |
||||
|
|
||||
|
private String organizationName; |
||||
|
|
||||
|
private String level; |
||||
|
} |
Loading…
Reference in new issue