zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
package com.shlanbao.tzsc.base.mapping;
 
import java.util.Date;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
 * SchCalendar entity. @author MyEclipse Persistence Tools
 */
 
public class EqmFixedStoptime implements java.io.Serializable {
 
    private String id;
    private String shift;
    private String team;
    /**
     * type:
     *  1、生产准备时间:每月第一天开始生产前的准备时间。
        2、交接班及日常保养:40分钟。
        3、停机用餐:白班30分钟;晚班无。
        4、换牌时间:40分钟。
        5、轮保或周保时间:尚未确定。
        6、非作业停机时间:生产计划期内设备不作业的时间,如晚上一点至早上八点。
        7、其它剔除时间:停水、电、气、汽以及烟丝断料,由调度员决定是否记录时间。
     * 
     * */
    private String type;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date date_;
    private Double times;
    private String unit;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date createTime;
    private Long del;
    
    
    public Long getDel() {
        return del;
    }
    public void setDel(Long del) {
        this.del = del;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public Date getDate_() {
        return date_;
    }
    public void setDate_(Date date_) {
        this.date_ = date_;
    }
    public String getShift() {
        return shift;
    }
    public void setShift(String shift) {
        this.shift = shift;
    }
    public String getTeam() {
        return team;
    }
    public void setTeam(String team) {
        this.team = team;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public Double getTimes() {
        return times;
    }
    public void setTimes(Double times) {
        this.times = times;
    }
    public String getUnit() {
        return unit;
    }
    public void setUnit(String unit) {
        this.unit = unit;
    }
    public Date getCreateTime() {
        return createTime;
    }
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    } 
    
    
    
    
    
}