| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- 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;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * BisInspMeetMntsSmsParam
- *
- * @author lhc
- * @date 2019-5-27
- */
- public class BisInspMeetMntsSmsParam extends PageParam implements Serializable {
- // id
- @ApiParam(name = "id")
- @ApiModelProperty(value = "id", name = "id")
- private String id;
- // 会议/讨论组id
- @ApiParam(name = "会议/讨论组id")
- @ApiModelProperty(value = "会议/讨论组id", name = "meetRecodeId")
- private String meetRecodeId;
- // 人员id
- @ApiParam(name = "人员id")
- @ApiModelProperty(value = "人员id", name = "persId")
- private String persId;
- // 短信内容
- @ApiParam(name = "短信内容")
- @ApiModelProperty(value = "短信内容", name = "sms")
- private String sms;
- // 创建时间
- @ApiParam(name = "创建时间")
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 最后修改时间
- @ApiParam(name = "最后修改时间")
- @ApiModelProperty(value = "最后修改时间", name = "uptm")
- private Date uptm;
- // 数据是否有效 1 0
- @ApiParam(name = "数据是否有效 1 0 ")
- @ApiModelProperty(value = "数据是否有效 1 0 ", name = "flagValid")
- private String flagValid;
- public BisInspMeetMntsSmsParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getMeetRecodeId() {
- return meetRecodeId;
- }
- public void setMeetRecodeId(String meetRecodeId) {
- this.meetRecodeId = meetRecodeId;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getSms() {
- return sms;
- }
- public void setSms(String sms) {
- this.sms = sms;
- }
- 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 getFlagValid() {
- return flagValid;
- }
- public void setFlagValid(String flagValid) {
- this.flagValid = flagValid;
- }
- }
|