lyh
2025-06-30 e3a037adf3861fee78ad5478784f24e59cc598a2
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
package org.jeecg.modules.eam.entity;
 
import java.io.Serializable;
import java.io.UnsupportedEncodingException;
import java.util.Date;
import java.math.BigDecimal;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.jeecg.common.constant.CommonConstant;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecg.common.aspect.annotation.Dict;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * @Description: mom_eam_plan_change_apply
 * @Author: jeecg-boot
 * @Date:   2023-09-04
 * @Version: V1.0
 */
@Data
@TableName("mom_eam_plan_change_apply")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="mom_eam_plan_change_apply对象", description="mom_eam_plan_change_apply")
public class PlanChangeApply extends JeecgEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**applyUnit*/
    @Excel(name = "applyUnit", width = 15)
    @ApiModelProperty(value = "applyUnit")
    private String applyUnit;
    /**applyTime*/
    @Excel(name = "applyTime", width = 15, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
    @ApiModelProperty(value = "applyTime")
    private Date applyTime;
    /**equipmentId*/
    @Excel(name = "equipmentId", width = 15)
    @ApiModelProperty(value = "equipmentId")
    private String equipmentId;
    /**maintenanceOrderId*/
    @Excel(name = "maintenanceOrderId", width = 15)
    @ApiModelProperty(value = "maintenanceOrderId")
    private String maintenanceOrderId;
    /**planStartTime*/
    @Excel(name = "planStartTime", width = 15, format = "yyyy-MM-dd HH:mm")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
    @ApiModelProperty(value = "planStartTime")
    private Date planStartTime;
    /**planDelayTime*/
    @Excel(name = "planDelayTime", width = 15, format = "yyyy-MM-dd HH:mm")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
    @ApiModelProperty(value = "planDelayTime")
    private Date planDelayTime;
    /**planUser*/
    @Excel(name = "planUser", width = 15)
    @ApiModelProperty(value = "planUser")
    private String planUser;
    /**delayReason*/
    @Excel(name = "delayReason", width = 15)
    @ApiModelProperty(value = "delayReason")
    private String delayReason;
    /**annex*/
    @Excel(name = "附件名称", width = 15)
    @ApiModelProperty(value = "附件名称")
    private String annexName;
 
    @Excel(name = "附件大小", width = 15)
    @ApiModelProperty(value = "附件大小")
    private String annexSize;
 
    @Excel(name = "路径", width = 15)
    @ApiModelProperty(value = "路径")
    private String annexPath;
    /**remark*/
    @Excel(name = "remark", width = 15)
    @ApiModelProperty(value = "remark")
    private String remark;
 
    /**tenantId*/
    @Excel(name = "tenantId", width = 15)
    @ApiModelProperty(value = "tenantId")
    private String tenantId;
    /**delFlag*/
    @Excel(name = "delFlag", width = 15)
    @ApiModelProperty(value = "delFlag")
    @TableLogic
    private Integer delFlag = CommonConstant.DEL_FLAG_0;
    @TableField(exist = false)
    private String planId;
 
}