YYC
2026-03-26 52628b24e63105d78a75a097909b2c92dec75de0
src/main/java/com/fzzy/async/fzzy40/entity/Fz40InoutSettle.java
@@ -3,11 +3,9 @@
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 javax.persistence.*;
import java.util.Date;
import java.util.List;
/**
 * 出入库结算,2023年5月26日,根据新国粮规优化调整
@@ -19,7 +17,7 @@
    @Id
    @Column(name = "ID_", length = 40)
    @PropertyDef(label = "流水号", description = "结算日期(yyyyMMdd)+4位顺序号组成")
    @PropertyDef(label = "流水号",description = "结算日期(yyyyMMdd)+4位顺序号组成")
    private String id;
    @Column(name = "COMPANY_ID_", length = 10)
@@ -49,6 +47,10 @@
    @Column(name = "CONTRACT_NAME_", length = 50)
    @PropertyDef(label = "合同名称", description = "针对轮换粮食必填")
    private String contractName;
    @Column(name = "CUSTOMER_NAME_", length = 50)
    @PropertyDef(label = "客户名称", description = "针对轮换粮食必填")
    private String customerName;
    // 结算信息
    @Column(name = "PAY_PRICE_")
@@ -83,7 +85,7 @@
    @PropertyDef(label = "银行行别代码")
    private String bankCategory;
    @Column(name = "BANK_CODE_", length = 20)
    @Column(name = "BANK_CODE_", length = 40)
    @PropertyDef(label = "开户行号")
    private String bankCode;
@@ -91,7 +93,7 @@
    @PropertyDef(label = "开户行名称")
    private String bank;
    @Column(name = "BANK_NUM_", length = 20)
    @Column(name = "BANK_NUM_", length = 40)
    @PropertyDef(label = "银行账号")
    private String bankNum;
@@ -102,13 +104,37 @@
    @Column(name = "PAY_USER_", length = 40)
    @PropertyDef(label = "付款操作人")
    private String payUser;
    @Column(name = "fphm", length = 10)
    @PropertyDef(label = "发票号码")
    private String fphm;
    @Column(name = "fpzt", length = 10)
    @PropertyDef(label = "发票状态",description = "1:正常,0:作废")
    private String fpzt;
    @Column(name = "REMARKS_", length = 200)
    @PropertyDef(label = "备注信息")
    private String remarks;
    @Column(name = "INOUT_RECORD_ID_", length = 40)
    @PropertyDef(label = "流水号", description = "根据一定的规则生成")
    private String inoutRecordId;
    @Column(name = "UPDATE_TIME_")
    @PropertyDef(label = "数据更新时间")
    private Date updateTime;
    /**
     * 系统内业务使用,只有单车结算赋值
     */
    @Column(name = "PLATE_NUM_", length = 20)
    @PropertyDef(label = "车船号", description = "车牌号+标识符")
    private String plateNum;
    @Column(name = "FOOD_VARIETY_", length = 20)
    @PropertyDef(label = "粮食品种")
    private String foodVariety;
}