| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- /**
- * BisPntBaseParam
- *
- * @author lune
- * @date 2019-2-19
- */
- public class BisPntBaseParam extends PageParam implements Serializable {
- private String guid;
- private String pblmId;
- private String inspObjGuid;
- private String pntCont;
- private String pblshOrgGuid;
- private String inspPblmDep;
- private String isResp;
- private String dataStat;
- private String recPers;
- private Date collTime;
- private String note;
- public BisPntBaseParam() {
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getPblmId() {
- return pblmId;
- }
- public void setPblmId(String pblmId) {
- this.pblmId = pblmId;
- }
- public String getInspObjGuid() {
- return inspObjGuid;
- }
- public void setInspObjGuid(String inspObjGuid) {
- this.inspObjGuid = inspObjGuid;
- }
- public String getPntCont() {
- return pntCont;
- }
- public void setPntCont(String pntCont) {
- this.pntCont = pntCont;
- }
- public String getPblshOrgGuid() {
- return pblshOrgGuid;
- }
- public void setPblshOrgGuid(String pblshOrgGuid) {
- this.pblshOrgGuid = pblshOrgGuid;
- }
- public String getInspPblmDep() {
- return inspPblmDep;
- }
- public void setInspPblmDep(String inspPblmDep) {
- this.inspPblmDep = inspPblmDep;
- }
- public String getIsResp() {
- return isResp;
- }
- public void setIsResp(String isResp) {
- this.isResp = isResp;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- public String getRecPers() {
- return recPers;
- }
- public void setRecPers(String recPers) {
- this.recPers = recPers;
- }
- public Date getCollTime() {
- return collTime;
- }
- public void setCollTime(Date collTime) {
- this.collTime = collTime;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- }
|