| | |
| | | |
| | | |
| | | /** 要求最早出发时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("earliest_departure") |
| | | private Date earliestDeparture; |
| | | |
| | |
| | | |
| | | |
| | | /** 要求最晚出发时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("latest_departure") |
| | | private Date latestDeparture; |
| | | |
| | |
| | | |
| | | |
| | | /** 要求最早到达时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("earliest_arrival") |
| | | private Date earliestArrival; |
| | | |
| | |
| | | |
| | | |
| | | /** 要求最晚到达时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("latest_arrival") |
| | | private Date latestArrival; |
| | | |
| | |
| | | @TableField("accounts_payable_status") |
| | | private Integer accountsPayableStatus; |
| | | |
| | | @TableField("collection_plan_id") |
| | | private Integer collectionPlanId; |
| | | @TableField(exist = false) |
| | | private Integer collectionPlanDetailId; |
| | | |
| | | @TableField(exist = false) |
| | | private BigDecimal collectionPlanAmount; |
| | | |
| | | @TableField(exist = false) |
| | | private String collectionPlanName; |
| | | |
| | | @TableField("payment_plan_id") |
| | | private Integer paymentPlanId; |
| | | |
| | | @TableField(exist = false) |
| | | private String paymentPlanName; |
| | | @TableField(exist = false) |
| | | private Integer paymentPlanDetailId; |
| | | |
| | | @TableField(exist = false) |
| | | private BigDecimal paymentPlanAmount; |
| | | } |