cuijian
2023-08-19 bdd0875d4b13a3f1ef472f64d4b6a95e0ef64b22
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
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;
}