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

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

+ * 版权所有,侵权必究! + */ + +package com.elink.esua.epdc.dto; + +import com.elink.esua.epdc.commons.tools.utils.TreeNode; +import lombok.Data; + +import java.io.Serializable; + +/** + * 网格信息 + * + * @author Mark sunlightcs@gmail.com + * @since 1.0.0 + */ +@Data +public class AllDeptDTO extends TreeNode implements Serializable { + private static final long serialVersionUID = 1L; + + private String deptName; + + private String deptId; + + private String streetName; + + private String streetId; + + private String communityName; + + private String communityId; + + private String gridName; + + private String gridId; + + private String gridDeptId; + + private String communityDeptId; + + private String streetDeptId; + + +}