| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- 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;
- /**
- * BisInspEmpwtprjParam
- *
- * @author lune
- * @date 2019-2-21
- */
- public class BisInspEmpwtprjParam extends PageParam implements Serializable {
- private String empwtprjId;
- private String ptype;
- private String adCode;
- private String nm;
- private String stwktm;
- private String plantm;
- private Double estapp;
- private String visshdu;
- private String dirunder;
- private Date intm;
- private Date uptm;
- private String note;
- private Double pjLgtd;
- private Double pjLttd;
- private String empwtprjPid;
- public BisInspEmpwtprjParam() {
- }
- public String getEmpwtprjId() {
- return empwtprjId;
- }
- public void setEmpwtprjId(String empwtprjId) {
- this.empwtprjId = empwtprjId;
- }
- public String getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getStwktm() {
- return stwktm;
- }
- public void setStwktm(String stwktm) {
- this.stwktm = stwktm;
- }
- public String getPlantm() {
- return plantm;
- }
- public void setPlantm(String plantm) {
- this.plantm = plantm;
- }
- public Double getEstapp() {
- return estapp;
- }
- public void setEstapp(Double estapp) {
- this.estapp = estapp;
- }
- public String getVisshdu() {
- return visshdu;
- }
- public void setVisshdu(String visshdu) {
- this.visshdu = visshdu;
- }
- public String getDirunder() {
- return dirunder;
- }
- public void setDirunder(String dirunder) {
- this.dirunder = dirunder;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public Double getPjLgtd() {
- return pjLgtd;
- }
- public void setPjLgtd(Double pjLgtd) {
- this.pjLgtd = pjLgtd;
- }
- public Double getPjLttd() {
- return pjLttd;
- }
- public void setPjLttd(Double pjLttd) {
- this.pjLttd = pjLttd;
- }
- public String getEmpwtprjPid() {
- return empwtprjPid;
- }
- public void setEmpwtprjPid(String empwtprjPid) {
- this.empwtprjPid = empwtprjPid;
- }
- }
|