diff --git a/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/ScreenDeptInfoDTO.java b/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/ScreenDeptInfoDTO.java
new file mode 100644
index 0000000..c1c0d0f
--- /dev/null
+++ b/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/ScreenDeptInfoDTO.java
@@ -0,0 +1,126 @@
+/**
+ * Copyright 2018 人人开源 https://www.renren.io
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see .
+ */
+
+package com.elink.esua.epdc.dto;
+
+import java.io.Serializable;
+import java.util.Date;
+import lombok.Data;
+
+
+/**
+ * 网格小程序码
+ *
+ * @author zhangyuan qu@elink-cn.com
+ * @since v1.0.0 2020-08-03
+ */
+@Data
+public class ScreenDeptInfoDTO implements Serializable {
+
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 主键
+ */
+ private String id;
+
+ /**
+ * 网格ID
+ */
+ private Long deptId;
+
+ /**
+ * 小程序码URL
+ */
+ private String deptName;
+
+ /**
+ * 排序,正序
+ */
+ private Integer sort;
+
+ /**
+ * 小区数
+ */
+ private Integer villageNum;
+
+ /**
+ * 楼栋数
+ */
+ private Integer buildingNum;
+
+ /**
+ * 楼长数
+ */
+ private Integer houseMasterNum;
+
+ /**
+ * 重点关注人员数
+ */
+ private Integer focusGroupsNum;
+
+ /**
+ * 人口数
+ */
+ private Integer personNum;
+
+ /**
+ * 实有党员数
+ */
+ private Integer partyNum;
+
+ /**
+ * 网格长
+ */
+ private String gridMaster;
+
+ /**
+ * 创建时间
+ */
+ private Date createdTime;
+
+ /**
+ * 更新人
+ */
+ private String updatedBy;
+
+ /**
+ * 更新时间
+ */
+ private Date updatedTime;
+
+ /**
+ * 删除标记
+ */
+ private String delFlag;
+
+ /**
+ * 备注
+ */
+ private String remark;
+
+ /**
+ * 拓展信息
+ */
+ private String extend;
+
+ /**
+ * 创建人
+ */
+ private String createdBy;
+
+}
\ No newline at end of file