From 433b18fddbdb38f0c2a0a2358bc74fe46e10c9ba Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Thu, 17 Aug 2023 11:07:41 +0800 Subject: [PATCH] chore:测试提交 --- screen-manage/src/main/java/com/moral/api/entity/Organization.java | 51 +++++++++++++++++++++++++++++++++++---------------- 1 files changed, 35 insertions(+), 16 deletions(-) diff --git a/screen-manage/src/main/java/com/moral/api/entity/Organization.java b/screen-manage/src/main/java/com/moral/api/entity/Organization.java index 2dd7686..a16e9dc 100644 --- a/screen-manage/src/main/java/com/moral/api/entity/Organization.java +++ b/screen-manage/src/main/java/com/moral/api/entity/Organization.java @@ -5,6 +5,9 @@ import com.baomidou.mybatisplus.annotation.TableId; import java.time.LocalDateTime; import java.io.Serializable; +import java.util.Date; + +import com.moral.anno.FieldName; import lombok.Data; import lombok.EqualsAndHashCode; @@ -14,7 +17,7 @@ * </p> * * @author moral - * @since 2021-03-09 + * @since 2021-04-06 */ @Data @EqualsAndHashCode(callSuper = false) @@ -31,6 +34,7 @@ /** * ���Id */ + @FieldName("���������Id") private Integer parentId; /** @@ -41,6 +45,7 @@ /** * ������������ */ + @FieldName("������������") private String name; /** @@ -49,74 +54,88 @@ private Integer provinceCode; /** + * ������������ + */ + @FieldName("������") + private String provinceName; + + /** * ������������ */ private Integer cityCode; /** - * ��������� + * ������������ + */ + @FieldName("������") + private String cityName; + + /** + * ��������� */ private Integer areaCode; /** - * ��������� + * ��������� */ - private Long townCode; + @FieldName("���") + private String areaName; /** - * ������������ + * ��������������������� */ - private Long villageCode; + private Integer locationLevelCode; /** - * ������������������ provincd_code city_code ...... + * ������������������������ */ - private String locationLevel; + @FieldName("������������") + private String locationLevelName; /** * ������ */ + @FieldName("������") private String address; /** * ��������� */ + @FieldName("������") private String phone; /** * ������ */ + @FieldName("������") private String email; /** * ��������� */ + @FieldName("������") private String wechat; /** * ������������ */ - private LocalDateTime createTime; + private Date createTime; /** * ������������ */ - private LocalDateTime updateTime; + private Date updateTime; /** * ������������ */ - private LocalDateTime expireTime; + @FieldName("������������") + private Date expireTime; /** * ������������ */ private String isDelete; - - @Override - protected Serializable pkVal() { - return this.id; - } } -- Gitblit v1.8.0