3 小时以前 55d694aaae4e421b5e55cd941500e08f85cb5d4d
src/main/java/com/ruoyi/sales/pojo/SalesLedger.java
@@ -35,6 +35,16 @@
    private String salesContractNo;
    /**
     * 合同类型:1普通销售合同,2框架合同,3框架订单
     */
    private Integer contractType = 1;
    /**
     * 父框架合同ID
     */
    private Long parentContractId;
    /**
     * 客户合同号
     */
    @Excel(name = "客户合同号", type = Excel.Type.IMPORT)
@@ -50,7 +60,7 @@
    /**
     * 录入日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @Excel(name = "录入日期", width = 30, dateFormat = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date entryDate;
@@ -109,6 +119,9 @@
    @Schema(description = "付款方式")
    private String paymentMethod;
    @Schema(description = "实际合同金额")
    private BigDecimal netContractAmount;
    @TableField(exist = false)
    @Schema(description = "生产状态")
    private String productionStatus = "未开始";