| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- 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;
- /**
- * BisInspExersultParam
- *
- * @author lune
- * @date 2019-2-19
- */
- public class BisInspExersultParam extends PageParam implements Serializable {
- private String exeId;
- private String guid;
- private String schmId;
- private String exeReport;
- private Date intm;
- private Date uptm;
- private String state;
- public BisInspExersultParam() {
- }
- public String getExeId() {
- return exeId;
- }
- public void setExeId(String exeId) {
- this.exeId = exeId;
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getSchmId() {
- return schmId;
- }
- public void setSchmId(String schmId) {
- this.schmId = schmId;
- }
- public String getExeReport() {
- return exeReport;
- }
- public void setExeReport(String exeReport) {
- this.exeReport = exeReport;
- }
- 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 getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- }
|