From 029de836702607a95ccb0a69a74efcea52ddc451 Mon Sep 17 00:00:00 2001 From: czt <czt18638530771@163.com> Date: 星期四, 25 九月 2025 19:35:38 +0800 Subject: [PATCH] 上海对农数据接口调整2 --- src/main/java/com/fzzy/async/fzzy61/entity/Fz61DrugLogPeople.java | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 56 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DrugLogPeople.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DrugLogPeople.java new file mode 100644 index 0000000..2ba7b07 --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DrugLogPeople.java @@ -0,0 +1,56 @@ +package com.fzzy.async.fzzy61.entity; + +import com.bstek.dorado.annotation.PropertyDef; +import lombok.Data; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; +import javax.persistence.Table; +import java.io.Serializable; + +/** + * 鐔忚捀浣滀笟浜哄憳淇℃伅琛� + * + * @Author:YAN + */ +@Data +@Entity +@Table(name = "D_DRUG_LOG_PEOPLE") +public class Fz61DrugLogPeople implements Serializable { + + @Id + @Column(name = "PEOPLE_ID_", length = 40) + @PropertyDef(label = "propleId") + private String propleId; + + + @Column(name = "DRUG_LOG_ID_", length = 12) + @PropertyDef(label = "鐔忚捀澶囨缂栧彿", description = "濉姤鏃ユ湡yyyyMMdd+4浣嶉『搴忓彿") + private String drugLogId; + + @Column(name = "mx", length = 20) + @PropertyDef(label = "濮撳悕") + private String mx; + + @Column(name = "zw", length = 10) + @PropertyDef(label = "鑱屽姟") + private String zw; + + @Column(name = "zyzg", length = 6) + @PropertyDef(label = "鑱屼笟璧勬牸", description = "鍒濈骇/涓骇/楂樼骇") + private String zyzg; + + @Column(name = "stzk", length = 10) + @PropertyDef(label = "韬綋鐘跺喌") + private String stzk; + + @Column(name = "xzrwfg", length = 30) + @PropertyDef(label = "鐔忚捀浠诲姟鍒嗗伐") + private String xzrwfg; + + @Column(name = "sfwb", length = 2) + @PropertyDef(label = "鏄惁澶栧寘", description = "鏄�/鍚�") + private String sfwb; + +} -- Gitblit v1.9.3