| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | @ApiModelProperty(value = "更新时间") |
| | | private Date updateTime; |
| | | /**删除标记*/ |
| | | @Excel(name = "删除标记", width = 15) |
| | | @ApiModelProperty(value = "删除标记") |
| | | @TableLogic |
| | | private Integer delFlag; |
| | | /**工单ID*/ |
| | | @Excel(name = "工单ID", width = 15) |
| | | @ApiModelProperty(value = "工单ID") |
| | | private String orderId; |
| | | /**点检项ID*/ |
| | | @Excel(name = "点检项ID", width = 15) |
| | | @ApiModelProperty(value = "点检项ID") |
| | | private String itemId; |
| | | /**点检结果*/ |
| | | @Excel(name = "点检结果", width = 15) |
| | | @ApiModelProperty(value = "点检结果-正常-异常") |
| | |
| | | @ApiModelProperty(value = "异常描述") |
| | | private String exceptionDescription; |
| | | /**异常是否保修*/ |
| | | @Excel(name = "异常是否保修", width = 15) |
| | | @ApiModelProperty(value = "异常是否保修") |
| | | private String whetherWarranty; |
| | | @Excel(name = "异常是否报修", width = 15) |
| | | @ApiModelProperty(value = "异常是否报修") |
| | | private String reportFlag; |
| | | /**保养项序号*/ |
| | | @ApiModelProperty(value = "保养项序号") |
| | | private Integer itemCode; |
| | | /**保养项*/ |
| | | @ApiModelProperty(value = "保养项") |
| | | private String itemName; |
| | | /**保养要求*/ |
| | | @ApiModelProperty(value = "保养要求") |
| | | private String itemDemand; |
| | | |
| | | public EamInspectionOrderDetail(){} |
| | | |
| | | public EamInspectionOrderDetail(EamMaintenanceStandardDetail detail) { |
| | | this.itemCode = detail.getItemCode(); |
| | | this.itemName = detail.getItemName(); |
| | | this.itemDemand = detail.getItemDemand(); |
| | | } |
| | | |
| | | } |