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;
|
}
|
|
}
|