package org.jeecg.modules.eam.entity; import java.io.Serializable; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.experimental.Accessors; import org.jeecg.common.aspect.annotation.Dict; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; import org.jeecg.common.constant.CommonConstant; import org.springframework.format.annotation.DateTimeFormat; import org.jeecgframework.poi.excel.annotation.Excel; import java.math.BigDecimal; import java.util.Date; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.UnsupportedEncodingException; /** * @Description: 维修内容 * @Author: jeecg-boot * @Date: 2023-04-25 * @Version: V1.0 */ @Data @TableName("mom_eam_repair_order_detail") @ApiModel(value="mom_eam_repair_order_detail对象", description="维修内容") @Accessors(chain = true) public class RepairOrderDetail implements Serializable { private static final long serialVersionUID = 1L; /**主键ID*/ @TableId(type = IdType.ASSIGN_ID) @ApiModelProperty(value = "主键ID") private String id; /**部位*/ @Excel(name = "部位", width = 15) @ApiModelProperty(value = "部位") private String location; /**示意图*/ @Excel(name = "示意图", width = 15) @ApiModelProperty(value = "示意图") private String sketchMap; /**维修项目*/ @Excel(name = "维修项目", width = 15) @ApiModelProperty(value = "维修项目") private String maintenanceItem; /**维修要求*/ @Excel(name = "维修要求", width = 15) @ApiModelProperty(value = "维修要求") private String maintenanceRequire; /**维修方法*/ @Excel(name = "维修方法", width = 15) @ApiModelProperty(value = "维修方法") private String maintenanceWay; /**工具*/ @Excel(name = "工具", width = 15) @ApiModelProperty(value = "工具") private String maintenanceTooling; /**安全要求*/ @Excel(name = "安全要求", width = 15) @ApiModelProperty(value = "安全要求") private String safetyRequirement; /**维修周期*/ @ApiModelProperty(value = "维修周期") private BigDecimal repairCycle; /**工时定额*/ @Excel(name = "工时定额", width = 15) @ApiModelProperty(value = "工时定额") private String timeQuota; /**维保专业ID*/ @Excel(name = "维保专业ID", width = 15) @ApiModelProperty(value = "维保专业ID") @Dict(dicCode = "id",dictTable = "mom_eam_maintenance_specialty",dicText = "name") private String mamaintenanceSpecialtyId; /**维修工单ID*/ @ApiModelProperty(value = "维修工单ID") private String repairOrderId; /**备用字段1*/ @Excel(name = "备用字段1", width = 15) @ApiModelProperty(value = "备用字段1") private String orderDetailUda1; /**备用字段2*/ @Excel(name = "备用字段2", width = 15) @ApiModelProperty(value = "备用字段2") private String orderDetailUda2; /**备用字段3*/ @Excel(name = "备用字段3", width = 15) @ApiModelProperty(value = "备用字段3") private String orderDetailUda3; /**备用字段4*/ @Excel(name = "备用字段4", width = 15) @ApiModelProperty(value = "备用字段4") private String orderDetailUda4; /**备用字段5*/ @Excel(name = "备用字段5", width = 15) @ApiModelProperty(value = "备用字段5") private String orderDetailUda5; /**创建时间*/ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "创建时间") private Date createTime; /**创建人*/ @ApiModelProperty(value = "创建人") private String createBy; /**修改时间*/ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "修改时间") private Date updateTime; /**修改人*/ @ApiModelProperty(value = "修改人") private String updateBy; /**删除状态(0-正常,1-已删除)*/ @Excel(name = "删除状态(0-正常,1-已删除)", width = 15) @ApiModelProperty(value = "删除状态(0-正常,1-已删除)") private Integer delFlag = CommonConstant.DEL_FLAG_0; /**租户ID*/ @Excel(name = "租户ID", width = 15) @ApiModelProperty(value = "租户ID") private String tenantId; }