| | |
| | | /** |
| | | * 录入日期 |
| | | */ |
| | | @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 String phoneNumber; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "来票金额") |
| | | private String receiptPaymentAmount; |
| | | |
| | | @Schema(description = "未来票金额") |
| | | @TableField(exist = false) |
| | | private String unReceiptPaymentAmount; |
| | | |
| | | @Schema(description = "文件类型 取 4") |
| | | @TableField(exist = false) |
| | | private Integer type; |
| | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "模板id") |
| | | private Long templateId; |
| | | |
| | | } |