| | |
| | | /** |
| | | * 录入日期 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @Excel(name = "录入日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date entryDate; |
| | | |
| | |
| | | * 合同金额(产品含税总价) |
| | | */ |
| | | private BigDecimal contractAmount; |
| | | |
| | | /** |
| | | * 实际合同金额(扣减退货后) |
| | | */ |
| | | @Schema(description = "实际合同金额") |
| | | private BigDecimal netContractAmount; |
| | | // |
| | | // /** |
| | | // * 业务员 |
| | |
| | | * 业务员手机号 |
| | | */ |
| | | private String phoneNumber; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "来票金额") |
| | | private String receiptPaymentAmount; |
| | | |
| | | @Schema(description = "未来票金额") |
| | | @TableField(exist = false) |
| | | private String unReceiptPaymentAmount; |
| | | |
| | | @Schema(description = "文件类型 取 4") |
| | | @TableField(exist = false) |
| | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | } |