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
package com.shlanbao.tzsc.base.mapping;
 
import java.util.Date;
 
import com.shlanbao.tzsc.base.model.BaseEntity;
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
public class SchFilterCount extends BaseEntity {
    private String id;
    private Double num;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private Date stim;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd")
    private Date etim;
    private String mat;
    private String matName;
    private String remark;
    private String Free;
    private String Free2;
    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 Date getStim() {
        return stim;
    }
    public void setStim(Date stim) {
        this.stim = stim;
    }
    public Date getEtim() {
        return etim;
    }
    public void setEtim(Date etim) {
        this.etim = etim;
    }
    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;
    }
}