From ee96821fc7990857ad6477690a5758f8c0ebaa66 Mon Sep 17 00:00:00 2001 From: YYC <1833023622@qq.com> Date: 星期一, 22 九月 2025 10:32:19 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/main/java/com/fzzy/async/fzzy61/entity/Fz61OAStaff.java | 128 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 128 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61OAStaff.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61OAStaff.java new file mode 100644 index 0000000..3309916 --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61OAStaff.java @@ -0,0 +1,128 @@ +package com.fzzy.async.fzzy61.entity; + +import com.bstek.dorado.annotation.PropertyDef; +import com.fasterxml.jackson.annotation.JsonFormat; +import lombok.Data; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; +import javax.persistence.Table; +import java.io.Serializable; +import java.util.Date; + +/** + * OA-浜哄憳绠$悊 + * + * @author: YAN + * @description: + * @version: + * @data:2023骞�8鏈�10鏃� + */ +@Data +@Entity +@Table(name = "D_OA_STAFF") +public class Fz61OAStaff implements Serializable { + private static final long serialVersionUID = 1L; + @Id + @Column(name = "sfzhm", length = 18) + @PropertyDef(label = "韬唤璇佸彿鐮�") + private String sfzhm; + + @Column(name = "COMPANY_ID_", length = 10) + @PropertyDef(label = "缁勭粐缂栫爜", description = "") + private String companyId; + + @Column(name = "DEPT_ID_", length = 20) + @PropertyDef(label = "搴撳尯缂栫爜", description = "") + private String deptId; + + @Column(name = "lsbm", length = 256) + @PropertyDef(label = "闅跺睘閮ㄩ棬", description = "闅跺睘閮ㄩ棬鍚嶇О") + private String lsbm; + + @Column(name = "xzqhdm", length = 6) + @PropertyDef(label = "鎵�灞炶鏀垮尯鍒�") + private String xzqhdm; + + @Column(name = "xzqhmc", length = 6) + @PropertyDef(label = "鎵�灞炶鏀垮尯鍒�") + private String xzqhmc; + + @Column(name = "xm", length = 32) + @PropertyDef(label = "濮撳悕") + private String xm; + + @Column(name = "xb", length = 1) + @PropertyDef(label = "鎬у埆") + private String xb; + + @Column(name = "rzrq") + @PropertyDef(label = "鍏ヨ亴鏃ユ湡") + @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8") + private Date rzrq; + /** + * 11锛� 鍦ㄥ矖鑱屽伐(闀挎湡)锛�12锛� 鍦ㄥ矖 鑱屽伐(涓存椂)锛�20锛� 鍏朵粬浠庝笟浜哄憳 + */ + @Column(name = "gwxz", length = 2) + @PropertyDef(label = "宀椾綅鎬ц川") + private String gwxz; + /** + * 01锛� 鍦ㄥ矖 02锛� 宸茬鑱� + */ + @Column(name = "zgzt", length = 2) + @PropertyDef(label = "鍦ㄥ矖鐘舵��") + private String zgzt; + + @Column(name = "lzrq") + @PropertyDef(label = "绂昏亴鏃ユ湡") + @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8") + private Date lzrq; + + @Column(name = "zjdh", length = 16) + @PropertyDef(label = "搴ф満鐢佃瘽") + private String zjdh; + + @Column(name = "yddh", length = 16) + @PropertyDef(label = "绉诲姩鐢佃瘽") + private String yddh; + + @Column(name = "dzyx", length = 32) + @PropertyDef(label = "鐢靛瓙閭") + private String dzyx; + + @Column(name = "mz", length = 2) + @PropertyDef(label = "姘戞棌") + private String mz; + + @Column(name = "zzmm", length = 2) + @PropertyDef(label = "鏀挎不闈㈣矊") + private String zzmm; + + @Column(name = "rylb", length = 4) + @PropertyDef(label = "浜哄憳绫诲埆") + private String rylb; + + @Column(name = "zy", length = 128) + @PropertyDef(label = "涓撲笟") + private String zy; + + @Column(name = "qdzgzchzyzgsj") + @PropertyDef(label = "鍙栧緱鏈�楂樿亴绉版垨鑱屼笟璧勬牸鏃堕棿") + @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8") + private Date qdzgzchzyzgsj; + + @Column(name = "xl", length = 1) + @PropertyDef(label = "瀛﹀巻") + private String xl; + + @Column(name = "zw", length = 16) + @PropertyDef(label = "鑱屽姟") + private String zw; + + @Column(name = "UPDATE_TIME_") + @PropertyDef(label = "鏇存柊鏃堕棿") + private Date updateTime; + + +} \ No newline at end of file -- Gitblit v1.9.3