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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
package com.shlanbao.tzsc.base.mapping;
 
import java.util.Date;
 
import com.shlanbao.tzsc.base.model.BaseEntity;
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
 * CosMatPriceMaintain entity. @author MyEclipse Persistence Tools
 */
 
public class CosMatPriceMaintain extends BaseEntity implements java.io.Serializable {
 
    /** 
    * @Fields serialVersionUID  
    */ 
    private String id;
    private MdShift mdShift;
    private MdMat mdMat;
    private MdUnit mdUnit;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date takeeffectDate;
    private Double matPrice;
    private Long del;
    private Long enabled;
    private String attr1;
    private String attr2;
    private String attr3;
    private String attr4;
 
    // Constructors
 
    /** default constructor */
    public CosMatPriceMaintain() {
    }
 
    /** full constructor */
    public CosMatPriceMaintain(MdShift mdShift, MdMat mdMat,MdUnit mdUnit,
            Date takeeffectDate, Double matPrice, Long del, Long enabled,
            String attr1, String attr2, String attr3, String attr4) {
        this.mdShift = mdShift;
        this.mdMat = mdMat;
        this.mdUnit = mdUnit;
        this.takeeffectDate = takeeffectDate;
        this.matPrice = matPrice;
        this.del = del;
        this.enabled = enabled;
        this.attr1 = attr1;
        this.attr2 = attr2;
        this.attr3 = attr3;
        this.attr4 = attr4;
    }
 
    // Property accessors
 
    public String getId() {
        return this.id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public MdShift getMdShift() {
        return this.mdShift;
    }
 
    public void setMdShift(MdShift mdShift) {
        this.mdShift = mdShift;
    }
 
    public MdMat getMdMat() {
        return this.mdMat;
    }
 
    public void setMdMat(MdMat mdMat) {
        this.mdMat = mdMat;
    }
    
    public MdUnit getMdUnit() {
        return mdUnit;
    }
 
    public void setMdUnit(MdUnit mdUnit) {
        this.mdUnit = mdUnit;
    }
 
    public Date getTakeeffectDate() {
        return this.takeeffectDate;
    }
 
    public void setTakeeffectDate(Date takeeffectDate) {
        this.takeeffectDate = takeeffectDate;
    }
 
    public Double getMatPrice() {
        return this.matPrice;
    }
 
    public void setMatPrice(Double matPrice) {
        this.matPrice = matPrice;
    }
 
    public Long getDel() {
        return this.del;
    }
 
    public void setDel(Long del) {
        this.del = del;
    }
 
    public Long getEnabled() {
        return this.enabled;
    }
 
    public void setEnabled(Long enabled) {
        this.enabled = enabled;
    }
 
    public String getAttr1() {
        return this.attr1;
    }
 
    public void setAttr1(String attr1) {
        this.attr1 = attr1;
    }
 
    public String getAttr2() {
        return this.attr2;
    }
 
    public void setAttr2(String attr2) {
        this.attr2 = attr2;
    }
 
    public String getAttr3() {
        return this.attr3;
    }
 
    public void setAttr3(String attr3) {
        this.attr3 = attr3;
    }
 
    public String getAttr4() {
        return this.attr4;
    }
 
    public void setAttr4(String attr4) {
        this.attr4 = attr4;
    }
 
}