| | |
| | | private String salesContractNo; |
| | | |
| | | /** |
| | | * 合同类型:1普通销售合同,2框架合同,3框架订单 |
| | | */ |
| | | private Integer contractType = 1; |
| | | |
| | | /** |
| | | * 父框架合同ID |
| | | */ |
| | | private Long parentContractId; |
| | | |
| | | /** |
| | | * 客户合同号 |
| | | */ |
| | | @Excel(name = "客户合同号", type = Excel.Type.IMPORT) |
| | |
| | | /** |
| | | * 录入日期 |
| | | */ |
| | | @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; |
| | |
| | | @Schema(description = "付款方式") |
| | | private String paymentMethod; |
| | | |
| | | @Schema(description = "实际合同金额") |
| | | private BigDecimal netContractAmount; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "生产状态") |
| | | private String productionStatus = "未开始"; |