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
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
package com.shlanbao.tzsc.pms.qm.qmsd.bean;
 
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
/**
 * sd标准值
 */
public class QmStdBean {
    private String id;
    private String matname;
    private Float weightstd;
    private Float cirsd;
    private Float roundsd;
    private Float lensd;
    private Float xzsd;
    private Float ventsd;
    private Float hdsd;
    private String matid;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private String effedate;//生效日期
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private String stim;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private String etim;
 
    public String getStim() {
        return stim;
    }
 
    public void setStim(String stim) {
        this.stim = stim;
    }
 
    public String getEtim() {
        return etim;
    }
 
    public void setEtim(String etim) {
        this.etim = etim;
    }
 
    public String getEffedate() {
        return effedate;
    }
 
    public void setEffedate(String effedate) {
        this.effedate = effedate;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getMatname() {
        return matname;
    }
 
    public void setMatname(String matname) {
        this.matname = matname;
    }
 
    public Float getWeightstd() {
        return weightstd;
    }
 
    public void setWeightstd(Float weightstd) {
        this.weightstd = weightstd;
    }
 
    public Float getCirsd() {
        return cirsd;
    }
 
    public void setCirsd(Float cirsd) {
        this.cirsd = cirsd;
    }
 
    public Float getRoundsd() {
        return roundsd;
    }
 
    public void setRoundsd(Float roundsd) {
        this.roundsd = roundsd;
    }
 
    public Float getLensd() {
        return lensd;
    }
 
    public void setLensd(Float lensd) {
        this.lensd = lensd;
    }
 
    public Float getXzsd() {
        return xzsd;
    }
 
    public void setXzsd(Float xzsd) {
        this.xzsd = xzsd;
    }
 
    public Float getVentsd() {
        return ventsd;
    }
 
    public void setVentsd(Float ventsd) {
        this.ventsd = ventsd;
    }
 
    public Float getHdsd() {
        return hdsd;
    }
 
    public void setHdsd(Float hdsd) {
        this.hdsd = hdsd;
    }
 
    public String getMatid() {
        return matid;
    }
 
    public void setMatid(String matid) {
        this.matid = matid;
    }
 
    @Override
    public String toString() {
        return "QmStdBean{" +
                "id='" + id + '\'' +
                ", matname='" + matname + '\'' +
                ", weightstd=" + weightstd +
                ", cirsd=" + cirsd +
                ", roundsd=" + roundsd +
                ", lensd=" + lensd +
                ", xzsd=" + xzsd +
                ", ventsd=" + ventsd +
                ", hdsd=" + hdsd +
                ", matid='" + matid + '\'' +
                ", effedate='" + effedate + '\'' +
                '}';
    }
}