| | |
| | | /** |
| | | * 录入日期 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @Excel(name = "录入日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date entryDate; |
| | | |
| | |
| | | |
| | | @Schema(description = "付款方式") |
| | | private String paymentMethod; |
| | | |
| | | @Schema(description = "车牌号") |
| | | private String carPlateNumber; |
| | | |
| | | @Schema(description = "运输单位/个人") |
| | | private String transportUnitOrPerson; |
| | | |
| | | @Schema(description = "审批状态 1-待审核,2-审批中,3-审批通过,4-审批失败,5表示是模板") |
| | | @Excel(name = "审批状态", readConverterExp = "1=待审核,2=审批中,3=审批通过,4=审批失败") |
| | | private Integer approvalStatus; |