| | |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | @Accessors(chain = true) |
| | | @ApiModel(value="eam_second_maintenance_order_detail对象", description="设备二级保养明细") |
| | | public class EamSecondMaintenanceOrderDetail implements Serializable { |
| | | |
| | | |
| | | /**主键*/ |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | @ApiModelProperty(value = "主键") |
| | |
| | | /**创建人*/ |
| | | @Excel(name = "创建人", width = 15) |
| | | @ApiModelProperty(value = "创建人") |
| | | @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname") |
| | | private String createBy; |
| | | /**创建时间*/ |
| | | @ApiModelProperty(value = "创建时间") |
| | |
| | | @Excel(name = "项目序号", width = 15) |
| | | @ApiModelProperty(value = "项目序号") |
| | | private Integer itemCode; |
| | | /**保养项目*/ |
| | | @Excel(name = "保养项目", width = 15) |
| | | @ApiModelProperty(value = "保养项目") |
| | | /** 保养分类;操作工、维修工 */ |
| | | @ApiModelProperty(name = "保养分类",notes = "操作工、维修工") |
| | | private String itemCategory; |
| | | /** 保养内容 */ |
| | | @ApiModelProperty(name = "保养内容",notes = "") |
| | | private String itemName; |
| | | /**部位*/ |
| | | @Excel(name = "部位", width = 15) |
| | | @ApiModelProperty(value = "部位") |
| | | private String itemPart; |
| | | /**保养要求*/ |
| | | @Excel(name = "保养要求", width = 15) |
| | | @ApiModelProperty(value = "保养要求") |
| | | private String itemDemand; |
| | | /**保养结果*/ |
| | | @Excel(name = "保养结果", width = 15) |
| | | @ApiModelProperty(value = "保养结果") |
| | | /** 保养结果 */ |
| | | @ApiModelProperty(name = "保养结果",notes = "") |
| | | @Dict(dicCode = "maintenance_result") |
| | | private String maintenanceResult; |
| | | /**报修标记*/ |
| | | @Excel(name = "报修标记", width = 15) |
| | | @ApiModelProperty(value = "报修标记") |
| | | /** 报修标记 */ |
| | | @ApiModelProperty(name = "报修标记",notes = "") |
| | | private String reportFlag; |
| | | /**异常描述*/ |
| | | @Excel(name = "异常描述", width = 15) |
| | | @ApiModelProperty(value = "异常描述") |
| | | /** 异常描述 */ |
| | | @ApiModelProperty(name = "异常描述",notes = "") |
| | | private String exceptionDescription; |
| | | } |