| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- 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;
- /**
- * BisInspSchemeParam
- *
- * @author lune
- * @date 2019-2-19
- */
- public class BisInspSchemeParam extends PageParam implements Serializable {
- private String guid;
- private String schmId;
- private String schmTitle;
- private String schmContent;
- private String schmMkps;
- private Date schmSttm;
- private Date schmEnttm;
- private Date schmIntm;
- private Date schmUptm;
- private String schmNote;
- public BisInspSchemeParam() {
- }
- 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 getSchmTitle() {
- return schmTitle;
- }
- public void setSchmTitle(String schmTitle) {
- this.schmTitle = schmTitle;
- }
- public String getSchmContent() {
- return schmContent;
- }
- public void setSchmContent(String schmContent) {
- this.schmContent = schmContent;
- }
- public String getSchmMkps() {
- return schmMkps;
- }
- public void setSchmMkps(String schmMkps) {
- this.schmMkps = schmMkps;
- }
- public Date getSchmSttm() {
- return schmSttm;
- }
- public void setSchmSttm(Date schmSttm) {
- this.schmSttm = schmSttm;
- }
- public Date getSchmEnttm() {
- return schmEnttm;
- }
- public void setSchmEnttm(Date schmEnttm) {
- this.schmEnttm = schmEnttm;
- }
- public Date getSchmIntm() {
- return schmIntm;
- }
- public void setSchmIntm(Date schmIntm) {
- this.schmIntm = schmIntm;
- }
- public Date getSchmUptm() {
- return schmUptm;
- }
- public void setSchmUptm(Date schmUptm) {
- this.schmUptm = schmUptm;
- }
- public String getSchmNote() {
- return schmNote;
- }
- public void setSchmNote(String schmNote) {
- this.schmNote = schmNote;
- }
- }
|