gongchunyi
2 天以前 6d8e9ef3653639275d262a975ad477fa0bf5e366
src/main/java/com/ruoyi/sales/pojo/SalesLedger.java
@@ -37,8 +37,9 @@
    /**
     * 客户合同号
     */
    @Excel(name = "客户合同号")
    @Excel(name = "客户合同号", type = Excel.Type.IMPORT)
    private String customerContractNo;
    /**
     * 项目名称
@@ -88,6 +89,12 @@
    private String remarks;
    /**
     * 客户备注
     */
    @Excel(name = "客户备注")
    private String customerRemarks;
    /**
     * 附件材料,存储文件名等相关信息
     */
    private String attachmentMaterials;
@@ -104,14 +111,16 @@
    @TableField(exist = false)
    @ApiModelProperty(value = "未开票金额(元)")
    private BigDecimal noInvoiceAmountTotal;
    @Excel(name = "未开票金额")
    private BigDecimal noInvoiceAmountTotal = BigDecimal.ZERO;
    @ApiModelProperty(value = "签订日期")
    private LocalDate executionDate;
    @TableField(exist = false)
    @ApiModelProperty(value = "已开票金额(元)")
    private BigDecimal invoiceTotal;
    @Excel(name = "已开票金额")
    private BigDecimal invoiceTotal = BigDecimal.ZERO;
    @TableField(exist = false)
    @ApiModelProperty(value = "回款金额")
@@ -123,5 +132,32 @@
    @ApiModelProperty(value = "付款方式")
    private String paymentMethod;
    @TableField(exist = false)
    @ApiModelProperty(value = "生产状态")
    private String productionStatus = "未开始";
    //交货日期
    @ApiModelProperty(value = "交货日期")
    @TableField(value = "delivery_date")
    private LocalDate deliveryDate;
    /**
     * 发货状态:0-未发货,1-已发货
     */
    @ApiModelProperty("发货状态:0-未发货,1-已发货")
    private Integer deliveryStatus;
    @TableField(exist = false)
    @ApiModelProperty(value = "交货天数差")
    private Integer deliveryDaysDiff;
    @TableField(exist = false)
    //是否发货(台账页面颜色控制)
    private Boolean isFh;
    @TableField(exist = false)
    //是否可编辑
    private Boolean isEdit;
}