| | |
| | | /**状态*/ |
| | | @Excel(name = "状态", width = 15) |
| | | @ApiModelProperty(value = "状态") |
| | | private String status = DailyInspectionOrder.STATUS_1; |
| | | private String status; |
| | | /**备用字段1*/ |
| | | @Excel(name = "备用字段1", width = 15) |
| | | @ApiModelProperty(value = "备用字段1") |
| | |
| | | @ApiModelProperty(value = "备用字段6") |
| | | private String inspectionOrderUda6; |
| | | |
| | | /**维修人确认时间*/ |
| | | @Excel(name = "维修人确认时间", width = 15, format = "yyyy-MM-dd") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | @ApiModelProperty(value = "维修人确认时间") |
| | | private Date repairConfirmDate; |
| | | |
| | | @TableField(exist = false) |
| | | private List<InspectionOrderDetail> inspectionOrderDetailList; |
| | | |