| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import java.io.Serializable;
- /**
- * Created by 61618 on 2019/3/4.
- */
- public class DvdwkParam extends PageParam implements Serializable {
- private String dvdwkId;
- private String schmId;
- private String guid;
- private String orgDp;
- private String dtype;
- private String content;
- private String intm;
- private String uptm;
- private String sendState;
- private Long inspNum;
- private String adCode;
- private String adName;
- private String orgName;
- private Long inspCount;
- private Double inspScale;
- public String getDvdwkId() {
- return dvdwkId;
- }
- public void setDvdwkId(String dvdwkId) {
- this.dvdwkId = dvdwkId;
- }
- public String getSchmId() {
- return schmId;
- }
- public void setSchmId(String schmId) {
- this.schmId = schmId;
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getOrgDp() {
- return orgDp;
- }
- public void setOrgDp(String orgDp) {
- this.orgDp = orgDp;
- }
- public String getDtype() {
- return dtype;
- }
- public void setDtype(String dtype) {
- this.dtype = dtype;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getIntm() {
- return intm;
- }
- public void setIntm(String intm) {
- this.intm = intm;
- }
- public String getUptm() {
- return uptm;
- }
- public void setUptm(String uptm) {
- this.uptm = uptm;
- }
- public String getSendState() {
- return sendState;
- }
- public void setSendState(String sendState) {
- this.sendState = sendState;
- }
- public Long getInspNum() {
- return inspNum;
- }
- public void setInspNum(Long inspNum) {
- this.inspNum = inspNum;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getOrgName() {
- return orgName;
- }
- public void setOrgName(String orgName) {
- this.orgName = orgName;
- }
- public Long getInspCount() {
- return inspCount;
- }
- public void setInspCount(Long inspCount) {
- this.inspCount = inspCount;
- }
- public Double getInspScale() {
- return inspScale;
- }
- public void setInspScale(Double inspScale) {
- this.inspScale = inspScale;
- }
- @Override
- public String toString() {
- return "DvdwkParam{" +
- "dvdwkId='" + dvdwkId + '\'' +
- ", schmId='" + schmId + '\'' +
- ", guid='" + guid + '\'' +
- ", orgDp='" + orgDp + '\'' +
- ", dtype='" + dtype + '\'' +
- ", content='" + content + '\'' +
- ", intm='" + intm + '\'' +
- ", uptm='" + uptm + '\'' +
- ", sendState='" + sendState + '\'' +
- ", inspNum=" + inspNum +
- ", adCode='" + adCode + '\'' +
- ", adName='" + adName + '\'' +
- ", orgName='" + orgName + '\'' +
- ", inspCount=" + inspCount +
- ", inspScale=" + inspScale +
- '}';
- }
- }
|