From c7dd4a195d8d893d92c49963447cdf6486844584 Mon Sep 17 00:00:00 2001
From: cjl <276999030@qq.com>
Date: Fri, 20 Oct 2023 09:45:53 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/wb' into cjl
---
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