hongjli
2025-05-20 bc65a54cfec5507ec53cb389b09f7def6fff0f9b
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
package com.aps.core.domain.ApsPlate;
 
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 工单计划需求日期表
 * @TableName aps_plate_require_date
 */
@EqualsAndHashCode(callSuper = true)
@TableName(value ="aps_plate_require_date")
@Data
public class ApsPlateRequireDate extends BaseEntity implements Serializable {
    /**
     * 主键ID
     */
    @TableId(value = "id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    /**
     * 工单Id
     */
    @TableField(value = "plan_id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long planId;
 
    /**
     * 订单号
     */
    @Excel(name = "工单号")
    @TableField(value = "doc_no")
    private String docNo;
 
    /**
     * 工单需求时间
     */
    @Excel(name = "需求日期")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField(value = "require_date")
    private Date requireDate;
 
    /**
     * 是否删除 0否 1是
     */
    @TableField(value = "del_flag")
    private Integer delFlag;
 
    /**
     * 
     */
    @TableField(value = "create_by")
    private String createBy;
 
    /**
     * 
     */
    @TableField(value = "create_time")
    private Date createTime;
 
    /**
     * 
     */
    @TableField(value = "update_by")
    private String updateBy;
 
    /**
     * 
     */
    @TableField(value = "update_time")
    private Date updateTime;
 
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
}