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
97
98
99
package com.shlanbao.tzsc.base.mapping;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
 * 停机剔除
 * @author 彭建安
 * @date 2018年8月20日
 *
 */
public class EqpStopMaintain implements Serializable{
    private String id;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private Date actualDate; //日期
    private MdTeam mdteam;//班组
    private MdEquipment mdeqp;//机台
    private MdEqpCategory mdca;
    private String content;//停机内容
    private Double num;//停机时间(分)
    private String free; //备注
    private String free1; //备用1
    private String free2; //备用2
    private MdShift mdShift;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public Date getActualDate() {
        return actualDate;
    }
    public void setActualDate(Date actualDate) {
        this.actualDate = actualDate;
    }
 
 
    public MdTeam getMdteam() {
        return mdteam;
    }
    public void setMdteam(MdTeam mdteam) {
        this.mdteam = mdteam;
    }
    public MdEqpCategory getMdca() {
        return mdca;
    }
    public void setMdca(MdEqpCategory mdca) {
        this.mdca = mdca;
    }
    public MdEquipment getMdeqp() {
        return mdeqp;
    }
    public void setMdeqp(MdEquipment mdeqp) {
        this.mdeqp = mdeqp;
    }
    public String getContent() {
        return content;
    }
    public void setContent(String content) {
        this.content = content;
    }
    public String getFree() {
        return free;
    }
    public void setFree(String free) {
        this.free = free;
    }
    public String getFree1() {
        return free1;
    }
    public void setFree1(String free1) {
        this.free1 = free1;
    }
    public String getFree2() {
        return free2;
    }
    public void setFree2(String free2) {
        this.free2 = free2;
    }
    public Double getNum() {
        return num;
    }
    public void setNum(Double num) {
        this.num = num;
    }
 
    public MdShift getMdShift() {
        return mdShift;
    }
 
    public void setMdShift(MdShift mdShift) {
        this.mdShift = mdShift;
    }
}