From eb29522f5017be6eee286dc558cadbab8747bc25 Mon Sep 17 00:00:00 2001 From: zhangyuan Date: Wed, 13 May 2020 14:10:59 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=A9=E4=B8=9A=E9=A1=B9=E7=9B=AEDTO?= =?UTF-8?q?=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../epdc/dto/project/PropertyProjectDTO.java | 126 ++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyProjectDTO.java diff --git a/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyProjectDTO.java b/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyProjectDTO.java new file mode 100644 index 0000000..10ccd20 --- /dev/null +++ b/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyProjectDTO.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.project; + +import java.io.Serializable; +import java.util.Date; +import lombok.Data; + + +/** + * 物业项目表 + * + * @author zhangyuan qu@elink-cn.com + * @since v1.0.0 2020-05-09 + */ +@Data +public class PropertyProjectDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键 + */ + private String id; + + /** + * 网格ID + */ + private String gridId; + + /** + * 网格名称 + */ + private String grid; + + /** + * 物业项目名称 + */ + private String projectName; + + /** + * 物业名称 + */ + private String propertyName; + + /** + * 物业电话 + */ + private String propertyTel; + + /** + * 物业负责人 + */ + private String propertyManager; + + /** + * 物业地址 + */ + private String propertyAddress; + + /** + * 乐观锁 + */ + private Integer revision; + + /** + * 删除标记(0-否,1-是) + */ + private String delFlag; + + /** + * 创建人 + */ + private String createdBy; + + /** + * 创建时间 + */ + private Date createdTime; + + /** + * 更新人 + */ + private String updatedBy; + + /** + * 更新时间 + */ + private Date updatedTime; + + /** + * 父所有部门 + */ + private String parentDeptIds; + + /** + * 父所有部门 + */ + private String parentDeptNames; + + /** + * 所有部门ID + */ + private String allDeptIds; + + /** + * 所有部门名称 + */ + private String allDeptNames; + +} \ No newline at end of file