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; /** * BisInspMeetMntsCustomsParam * * @author lhc * @date 2019-5-27 */ public class BisInspMeetMntsCustomsParam extends PageParam implements Serializable { private String id; // 参会人员id @ApiParam(name = "参会人员id") @ApiModelProperty(value = "参会人员id", name = "persId") private String persId; // 小鱼账号 @ApiParam(name = "小鱼账号") @ApiModelProperty(value = "小鱼账号", name = "callnumber") private String callnumber; // 会议/讨论组id @ApiParam(name = "会议/讨论组id") @ApiModelProperty(value = "会议/讨论组id", name = "meetRecodeId") private String meetRecodeId; // 加入时间 @ApiParam(name = "加入时间") @ApiModelProperty(value = "加入时间", name = "jntm") private Date jntm; // 创建时间 @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 BisInspMeetMntsCustomsParam() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public String getMeetRecodeId() { return meetRecodeId; } public void setMeetRecodeId(String meetRecodeId) { this.meetRecodeId = meetRecodeId; } public Date getJntm() { return jntm; } public void setJntm(Date jntm) { this.jntm = jntm; } 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; } public String getCallnumber() { return callnumber; } public void setCallnumber(String callnumber) { this.callnumber = callnumber; } }