lyh
2025-06-30 fe65bb1d764ca9d32647818240bb551db06e0b7c
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
package org.jeecg.modules.eam.entity;
 
import java.io.Serializable;
 
import com.baomidou.mybatisplus.annotation.*;
import org.jeecg.common.aspect.annotation.Dict;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import java.util.Date;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.UnsupportedEncodingException;
 
/**
 * @Description: 保养计划明细
 * @Author: jeecg-boot
 * @Date:   2023-10-16
 * @Version: V1.0
 */
@Data
@TableName("mom_eam_equipment_maintenance_plan_detail")
@ApiModel(value="mom_eam_equipment_maintenance_plan_detail对象", description="保养计划明细")
public class EquipmentMaintenancePlanDetail implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**主键ID*/
    @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "主键ID")
    private java.lang.String id;
    /**计划单id*/
    @ApiModelProperty(value = "计划单id")
    private java.lang.String planId;
    /**保养标准id*/
    @Excel(name = "保养标准id", width = 15)
    @ApiModelProperty(value = "保养标准id")
    private java.lang.String standardId;
    /**计划开始时间*/
    @Excel(name = "计划开始时间", width = 15, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
    @ApiModelProperty(value = "计划开始时间")
    private java.util.Date planStartTime;
    /**计划结束时间*/
    @Excel(name = "计划结束时间", width = 15, format = "yyyy-MM-dd")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
    @ApiModelProperty(value = "计划结束时间")
    private java.util.Date planEndTime;
 
    @TableField(exist = false)
    private String standardNum;
 
    @TableField(exist = false)
    private String equipmentId;
 
    @TableField(exist = false)
    private String equipmentNum;
 
    @TableField(exist = false)
    private String equipmentName;
 
    @TableField(exist = false)
    private String model;
}