From 34981c30a78e8bbd7791131059a9210f9928b62c Mon Sep 17 00:00:00 2001
From: 刘光辉 <347230014@qq.com>
Date: 星期四, 17 九月 2026 09:24:09 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into master
---
jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/limsEntity/LimsApplyTestEntity.java | 197 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 197 insertions(+), 0 deletions(-)
diff --git a/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/limsEntity/LimsApplyTestEntity.java b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/limsEntity/LimsApplyTestEntity.java
new file mode 100644
index 0000000..2885527
--- /dev/null
+++ b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/limsEntity/LimsApplyTestEntity.java
@@ -0,0 +1,197 @@
+package jnpf.limsEntity;
+
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import jnpf.base.entity.SuperEntity;
+import jnpf.base.entity.SuperExtendEntity;
+import lombok.Data;
+import java.util.Date;
+
+/**
+ * 鏍峰搧妫�楠屽疄浣撶被
+ */
+@Data
+@TableName("lims_apply_test")
+public class LimsApplyTestEntity extends SuperEntity<String> {
+ /**
+ * 浜у搧绫诲瀷
+ */
+ @TableField("q_type")
+ @JsonProperty("q_type")
+ private String qType;
+
+ /**
+ * 鐗╂枡浠g爜
+ */
+ @TableField("wl_code")
+ private String wlCode;
+
+ /**
+ * 鏍峰搧鍚嶇О
+ */
+ @TableField("sample_name")
+ private String sampleName;
+
+ /**
+ * 瑙勬牸
+ */
+ @TableField("spec")
+ private String spec;
+
+ /**
+ * 鍖呰瑙勬牸
+ */
+ @TableField("pack_spec")
+ private String packSpec;
+
+ /**
+ * 鎵瑰彿
+ */
+ @TableField("batchno")
+ private String batchno;
+
+ /**
+ * 妫�楠岀被鍨�
+ */
+ @TableField("check_type")
+ private String[] checkType;
+
+ /**
+ * 妫�楠屾暟閲�
+ */
+ @TableField("check_num")
+ private String checkNum;
+
+ /**
+ * 妫�楠屼緷鎹�
+ */
+ @TableField("check_gist")
+ private String checkGist;
+
+ /**
+ * 绾у埆
+ */
+ @TableField("check_level")
+ private String checkLevel;
+
+ /**
+ * 鐢熶骇鍟�
+ */
+ @TableField("producer")
+ private String producer;
+
+ /**
+ * 渚涘簲鍟�
+ */
+ @TableField("supplier")
+ private String supplier;
+
+ /**
+ * 妫�楠岄」鐩�
+ */
+ @TableField("check_item")
+ private String checkItem;
+
+ /**
+ * 鏈夋晥鏈熻嚦
+ */
+ @TableField("expirydate")
+ private Date expirydate;
+
+ /**
+ * 涓婚敭
+ */
+ /*@TableField("f_id")
+ private String fId;*/
+
+ /**
+ * 绉熸埛id
+ */
+ /*@TableField("f_tenant_id")
+ private String fTenantId;*/
+
+ /**
+ * 娴佺▼id
+ */
+ /*@TableField("f_flow_id")
+ private String fFlowId;*/
+
+ /**
+ * 涔愯閿�
+ */
+ /*@TableField("f_version")
+ private Integer fVersion;*/
+
+ /**
+ * 娴佺▼浠诲姟涓婚敭
+ */
+ /*@TableField("f_flow_task_id")
+ private String fFlowTaskId;*/
+
+ /**
+ * 娴佺▼浠诲姟鐘舵��
+ */
+ /* @TableField("f_flow_state")
+ private Integer fFlowState;*/
+
+ /**
+ * 鏍峰搧缂栧彿
+ */
+ @TableField("sample_code")
+ private String sampleCode;
+
+ /**
+ * 妫�楠屾祦姘村彿
+ */
+ @TableField("apply_flow")
+ private String applyFlow;
+
+ /**
+ * 鏍峰搧ID
+ */
+ @TableField("sample_id")
+ private String sampleId;
+
+ /**
+ * 璇锋鐘舵��
+ */
+ @TableField("apply_status")
+ private String applyStatus;
+
+ /**
+ * 璇锋浜�
+ */
+ @TableField("apply_user")
+ private String applyUser;
+
+ /**
+ * 璇锋鏃堕棿
+ */
+ @TableField("apply_date")
+ private Date applyDate;
+
+ /**
+ * 璐ㄩ噺鏍囧噯Id
+ */
+ @TableField("zlbz_id")
+ private String zlbzId;
+
+ /**
+ * 澶囨敞
+ */
+ @TableField("note")
+ private String note;
+
+ /**
+ * 妫�楠屾暟閲忓崟浣�
+ */
+ @TableField("check_num_unit")
+ private String checkNumUnit;
+
+ /**
+ * 鐢靛瓙绛惧悕
+ */
+ @TableField("signature")
+ private String signature;
+}
\ No newline at end of file
--
Gitblit v1.8.0