diff --git a/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/DeptInfoDTO.java b/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/DeptInfoDTO.java new file mode 100644 index 0000000..da07f7f --- /dev/null +++ b/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/DeptInfoDTO.java @@ -0,0 +1,85 @@ +/** + * Copyright (c) 2018 人人开源 All rights reserved. + *

+ * https://www.renren.io + *

+ * 版权所有,侵权必究! + */ + +package com.elink.esua.epdc.dto; + +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + +/** + * 部门管理 + * + * @author Mark sunlightcs@gmail.com + * @since 1.0.0 + */ +@Data +public class DeptInfoDTO implements Serializable { + private static final long serialVersionUID = 1L; + + private Long id; + /** + * 上级ID + */ + private Long pid; + /** + * 所有上级ID,用逗号分开 + */ + private String pids; + /** + * 部门名称 + */ + private String name; + /** + * 区域编码 + */ + private String areaCode; + /** + * 区域编码 + */ + private String allAreaCode; + /** + * 区域编码 + */ + private String parentAreaCode; + /** + * 排序 + */ + private Integer sort; + /** + * 删除标识 0:未删除 1:删除 + */ + private Integer delFlag; + /** + * 更新者 + */ + private Long updater; + /** + * 更新时间 + */ + private Date updateDate; + + /** + * 上级部门名称 + */ + private String parentName; + + /** + * 部门类型键值 + */ + private String typeKey; + + /** + * 部门编码 + */ + private String partyCode; + + private String deptId; + +} diff --git a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/HouseQrcodeZipFormDTO.java b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/HouseQrcodeZipFormDTO.java index 543fdfb..ea6ea65 100644 --- a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/HouseQrcodeZipFormDTO.java +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/HouseQrcodeZipFormDTO.java @@ -17,4 +17,8 @@ public class HouseQrcodeZipFormDTO implements Serializable { @NotBlank(message = "网格id不可为空", groups = DefaultGroup.class) private String gridId; + + private String communityId; + + private String streetId; }