zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package com.shlanbao.tzsc.pms.cos.maintain.beans;
 
 
import com.shlanbao.tzsc.base.model.BaseEntity;
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
public class MaintainBean extends BaseEntity {
    private String id;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String takeeffectDate;
    private Double matPrice;
    private String matName;
    private String matId;
    private Long enabled;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String date1;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private String date2;
    private String attr1;//备注
    private String shiftId;
    private String shiftName;
    private String unitId;
    private String unitName;
    private String matType;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getTakeeffectDate() {
        return takeeffectDate;
    }
    public void setTakeeffectDate(String takeeffectDate) {
        this.takeeffectDate = takeeffectDate;
    }
    public Double getMatPrice() {
        return matPrice;
    }
    public void setMatPrice(Double matPrice) {
        this.matPrice = matPrice;
    }
    public String getMatName() {
        return matName;
    }
    public void setMatName(String matName) {
        this.matName = matName;
    }
    public String getMatId() {
        return matId;
    }
    public void setMatId(String matId) {
        this.matId = matId;
    }
    /*public String getEnabled() {
        return enabled;
    }
    public void setEnabled(String enabled) {
        this.enabled = enabled;
    }*/
 
    public Long getEnabled() {
        return enabled;
    }
 
    public void setEnabled(Long enabled) {
        this.enabled = enabled;
    }
 
    public String getDate1() {
        return date1;
    }
    public void setDate1(String date1) {
        this.date1 = date1;
    }
    public String getDate2() {
        return date2;
    }
    public void setDate2(String date2) {
        this.date2 = date2;
    }
    public String getAttr1() {
        return attr1;
    }
    public void setAttr1(String attr1) {
        this.attr1 = attr1;
    }
    public String getShiftId() {
        return shiftId;
    }
    public void setShiftId(String shiftId) {
        this.shiftId = shiftId;
    }
    public String getShiftName() {
        return shiftName;
    }
    public void setShiftName(String shiftName) {
        this.shiftName = shiftName;
    }
    public String getUnitId() {
        return unitId;
    }
    public void setUnitId(String unitId) {
        this.unitId = unitId;
    }
    public String getUnitName() {
        return unitName;
    }
    public void setUnitName(String unitName) {
        this.unitName = unitName;
    }
 
    public String getMatType() {
        return matType;
    }
 
    public void setMatType(String matType) {
        this.matType = matType;
    }
}