2 changed files with 67 additions and 2 deletions
@ -0,0 +1,51 @@ |
|||
package com.elink.esua.epdc.commons.tools.security.content.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 机构拼接信息 |
|||
* |
|||
* @author yujintao |
|||
* @email yujintao@elink-cn.com |
|||
* @date 2019/9/7 9:8 |
|||
*/ |
|||
@Data |
|||
public class ParentAndAllDeptDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 8264059305193996215L; |
|||
// /**
|
|||
// * 部门名称
|
|||
// */
|
|||
// private String deptName;
|
|||
// /**
|
|||
// * 部门id
|
|||
// */
|
|||
// private Long deptId;
|
|||
/** |
|||
* 网格名称/部门名称 |
|||
*/ |
|||
private String grid; |
|||
/** |
|||
* 网格ID/部门id |
|||
*/ |
|||
private Long gridId; |
|||
|
|||
/** |
|||
* 父所有部门ID |
|||
*/ |
|||
private String parentDeptIds; |
|||
/** |
|||
* 父所有部门 |
|||
*/ |
|||
private String parentDeptNames; |
|||
/** |
|||
* 所有部门ID |
|||
*/ |
|||
private String allDeptIds; |
|||
/** |
|||
* 所有部门 |
|||
*/ |
|||
private String allDeptNames; |
|||
} |
Loading…
Reference in new issue