From 11430ae628f098654579811131abc522d679e870 Mon Sep 17 00:00:00 2001 From: czt <czt18638530771@163.com> Date: 星期一, 22 九月 2025 17:04:42 +0800 Subject: [PATCH] 上海对农接口调整-增加自动上传 --- src/main/java/com/fzzy/async/fzzy61/entity/Fz61CheckItem.java | 123 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 123 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61CheckItem.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61CheckItem.java new file mode 100644 index 0000000..77fab00 --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61CheckItem.java @@ -0,0 +1,123 @@ +package com.fzzy.async.fzzy61.entity; + +import com.bstek.dorado.annotation.PropertyDef; +import com.fzzy.async.fzzy40.entity.Fz40CheckItemKey; +import lombok.Data; + +import javax.persistence.*; +import java.io.Serializable; + +/** + * 鐢ㄤ簬鍑哄叆搴撹川妫�璇︾粏椤瑰拰鏃ュ父宸℃鐨勮缁嗛」璁板綍 + * + * @author: andy.jia + * @description: + * @version: + * @data:2020骞�4鏈�7鏃� + */ +@Data +@Entity +@Table(name = "D_CHECK_ITEM") +@IdClass(Fz61CheckItemKey.class) +public class Fz61CheckItem implements Serializable { + + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @Column(name = "CHECK_ID_", length = 40) + @PropertyDef(label = "妫�娴嬬紪鐮�") + private String checkId; + + @Id + @Column(name = "COMPANY_ID_", length = 10) + @PropertyDef(label = "缁勭粐缂栫爜") + private String companyId; + + @Id + @Column(name = "STANDARD_ID_", length = 10) + @PropertyDef(label = "妫�娴嬮」缂栫爜") + private String standardId; + + @Column(name = "STANDARD_NAME_", length = 50) + @PropertyDef(label = "鍖栭獙椤�") + private String standardName; + + @Column(name = "UNIT_", length = 20) + @PropertyDef(label = "鍗曚綅") + private String unit; + + @Column(name = "UPPER_LIMIT_") + @PropertyDef(label = "鏍囧噯浼愬��") + private Double upperLimit; + + @Column(name = "OPERA_SYMBOL_", length = 4) + @PropertyDef(label = "杩愮畻绗﹀彿") + private String operaSymbol; + + @Column(name = "RULE_NUM_") + @PropertyDef(label = "鎵i噸绯绘暟") + private Double ruleNum; + + @Column(name = "RULE_ADD_") + @PropertyDef(label = "澧為噸%") + private Double ruleAdd; + + @Column(name = "RULE_ADD_END_") + @PropertyDef(label = "澧為噸涓婇檺%") + private Double ruleAddEnd; + + @Column(name = "RULE_REDUCE_") + @PropertyDef(label = "鎵i噸鍊�%") + private Double ruleReduce; + + @Column(name = "VALUE_", length = 40) + @PropertyDef(label = "妫�娴嬪��") + private String value; + + @Column(name = "RULE_PRICE_") + @PropertyDef(label = "鎵h垂绯绘暟") + private Double rulePrice; + + @Column(name = "RULE_REDUCE_PRICE_") + @PropertyDef(label = "鎵h垂") + private Double ruleReducePrice; + + @Column(name = "ADD_NUM_") + @PropertyDef(label = "澧為噸", description = "鍗曚綅锛歬G") + private Double addNum; + + @Column(name = "DE_NUM_") + @PropertyDef(label = "鎵i噸", description = "鍗曚綅锛歬G") + private Double deNum; + + @Column(name = "ADD_PRICE_") + @PropertyDef(label = "澧炰环", description = "鍗曚綅锛氬厓") + private Double addPrice; + + @Column(name = "DE_PRICE_") + @PropertyDef(label = "鎵d环", description = "鍗曚綅锛氬厓") + private Double dePrice; + + @Column(name = "RESULT_", length = 2) + @PropertyDef(label = "妫�楠岀粨鏋�", description = "0=涓嶅悎鏍� 1=鍚堟牸") + private String result; + + @Column(name = "REMARKS_", length = 50) + @PropertyDef(label = "澶囨敞") + private String remarks; + + @Transient + @PropertyDef(label = "杩愮畻绗﹀彿鍊硷紝鍙仛椤甸潰鏄剧ず鐢�") + private String operaSymbolValue; + + @Transient + @PropertyDef(label = "婀垮害") + private double perWet; + + @Transient + @PropertyDef(label = "鏉傝川") + private double perImpurity; +} -- Gitblit v1.9.3