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
package com.shlanbao.tzsc.pms.md.FilterCount;
 
 
import java.util.Date;
 
import com.shlanbao.tzsc.base.model.BaseEntity;
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
public class SchFilterCountBean extends BaseEntity {
    private String id;
    private Double num;
    private String remark;
    private String Free;
    private String mat;
    private String matName;
    private String Free2;
    @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 getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
    public Double getNum() {
        return num;
    }
    public void setNum(Double num) {
        this.num = num;
    }
 
    public String getRemark() {
        return remark;
    }
    public void setRemark(String remark) {
        this.remark = remark;
    }
    public String getFree() {
        return Free;
    }
    public void setFree(String free) {
        Free = free;
    }
    public String getFree2() {
        return Free2;
    }
    public void setFree2(String free2) {
        Free2 = free2;
    }
 
    public String getMat() {
        return mat;
    }
 
    public void setMat(String mat) {
        this.mat = mat;
    }
 
    public String getMatName() {
        return matName;
    }
 
    public void setMatName(String matName) {
        this.matName = matName;
    }
 
}