From cc3b39d533a127d691a7384cfe4055fbed6ba404 Mon Sep 17 00:00:00 2001 From: zhangyuan Date: Wed, 20 May 2020 16:36:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=89=A9=E4=B8=9A=E8=A1=A8?= =?UTF-8?q?=E5=92=8C=E7=89=A9=E4=B8=9A=E5=88=86=E6=95=B0=E7=9B=B8=E5=85=B3?= =?UTF-8?q?DTO?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../esua/epdc/dto/project/PropertyDTO.java | 86 +++++++++++++++++ .../epdc/dto/project/PropertyProjectDTO.java | 5 + .../dto/project/PropertyProjectScoreDTO.java | 92 +++++++++++++++++++ .../result/PropertyDictListResultDTO.java | 46 ++++++++++ 4 files changed, 229 insertions(+) create mode 100644 epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyDTO.java create mode 100644 epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyProjectScoreDTO.java create mode 100644 epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/result/PropertyDictListResultDTO.java diff --git a/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyDTO.java b/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyDTO.java new file mode 100644 index 0000000..d0063b5 --- /dev/null +++ b/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyDTO.java @@ -0,0 +1,86 @@ +/** + * 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-20 + */ +@Data +public class PropertyDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键 + */ + private String id; + + /** + * 物业名称 + */ + private String propertyName; + + /** + * 物业编码 + */ + private String propertyCode; + + /** + * 是否有效(0-否,1-是) + */ + private String effectiveFlag; + + /** + * 乐观锁 + */ + private Integer revision; + + /** + * 删除标记(0-否,1-是) + */ + private String delFlag; + + /** + * 创建人 + */ + private String createdBy; + + /** + * 创建时间 + */ + private Date createdTime; + + /** + * 更新人 + */ + private String updatedBy; + + /** + * 更新时间 + */ + private Date updatedTime; + +} \ No newline at end of file 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 index 10ccd20..12dc063 100644 --- 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 @@ -53,6 +53,11 @@ public class PropertyProjectDTO implements Serializable { */ private String projectName; + /** + * 物业id + */ + private String propertyId; + /** * 物业名称 */ diff --git a/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyProjectScoreDTO.java b/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyProjectScoreDTO.java new file mode 100644 index 0000000..2452eb0 --- /dev/null +++ b/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/PropertyProjectScoreDTO.java @@ -0,0 +1,92 @@ +/** + * 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; + +import java.math.BigDecimal; + +/** + * 物业项目得分表 + * + * @author zhangyuan qu@elink-cn.com + * @since v1.0.0 2020-05-20 + */ +@Data +public class PropertyProjectScoreDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键 + */ + private String id; + + /** + * 物业项目ID + */ + private String projectId; + + /** + * 物业ID + */ + private String propertyId; + + /** + * 用户ID + */ + private String userId; + + /** + * 得分 + */ + private BigDecimal score; + + /** + * 乐观锁 + */ + private Integer revision; + + /** + * 删除标记(0-否,1-是) + */ + private String delFlag; + + /** + * 创建人 + */ + private String createdBy; + + /** + * 创建时间 + */ + private Date createdTime; + + /** + * 更新人 + */ + private String updatedBy; + + /** + * 更新时间 + */ + private Date updatedTime; + +} \ No newline at end of file diff --git a/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/result/PropertyDictListResultDTO.java b/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/result/PropertyDictListResultDTO.java new file mode 100644 index 0000000..314e2dc --- /dev/null +++ b/epdc-cloud-property-client/src/main/java/com/elink/esua/epdc/dto/project/result/PropertyDictListResultDTO.java @@ -0,0 +1,46 @@ +/** + * 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.result; + +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + + +/** + * 物业表 + * + * @author zhangyuan qu@elink-cn.com + * @since v1.0.0 2020-05-20 + */ +@Data +public class PropertyDictListResultDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键 + */ + private String dictValue; + + /** + * 物业名称 + */ + private String dictName; +} \ No newline at end of file