package com.fzzy.async.fzzy61.entity; import com.alibaba.fastjson.annotation.JSONField; 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; import java.util.Date; /** * @Description 入库成本核定 * @Author CZT * @Date 2025/11/04 20:18 */ @Data @Entity @Table(name = "D_INOUT_COST_VERIFY") public class Fz61InoutCostVerify implements Serializable { public static String SORT_PROP = "rkhddh"; @Id @PropertyDef(label = "入库核定单号", description = "验收申请日期yyyyMMdd + 4位顺序号") @Column(name = "rkhddh", length = 14) private String rkhddh; @Column(name = "COMPANY_ID_", length = 10) @PropertyDef(label = "组织编码") private String companyId; @Column(name = "DEPT_ID_", length = 20) @PropertyDef(label = "所属分库") private String deptId; @Column(name = "DEPOT_ID_", length = 30) @PropertyDef(label = "仓库编码", description = "目前上海使用") private String depotId; @PropertyDef(label = "储粮品种代码" ) @Column(name = "lspzdm", length = 7) private String lspzdm; @PropertyDef(label = "核定单价" ) @Column(name = "hddj", precision = 20, scale = 3) private Double hddj; @PropertyDef(label = "核定数量" ) @Column(name = "hdsl", precision = 20, scale = 3) private Double hdsl; @PropertyDef(label = "粮食性质" ) @Column(name = "lsxz", length = 3) private String lsxz; @PropertyDef(label = "填报单位" ) @Column(name = "tbdw", length = 512) private String tbdw; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "填报时间") @Column(name = "tbsj") private Date tbsj; @PropertyDef(label = "单位负责人") @Column(name = "dwfzr", length = 512) private String dwfzr; @PropertyDef(label = "填报人") @Column(name = "tbr", length = 512) private String tbr; @PropertyDef(label = "备注") @Column(name = "REMARKS_", length = 512) private String remarks; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "最后更新时间") @Column(name = "zhgxsj") private Date zhgxsj; }