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; /** * MeetSginInOutInfoParam * * @author lune * @date 2019-7-23 */ public class MeetSginInOutInfoParam extends PageParam implements Serializable { @ApiModelProperty("主键ID") private String id; @ApiModelProperty("会议ID") private String meetId; @ApiModelProperty("类型(1:签到2:签退)") private String type; @ApiModelProperty("基准开始时间") private Date stTm; @ApiModelProperty("基准结束时间") private Date enTm; @ApiModelProperty("排序字段") private String orderBy; @ApiModelProperty("人员id") private String persId; public MeetSginInOutInfoParam() { } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } @Override public String getOrderBy() { return orderBy; } @Override public void setOrderBy(String orderBy) { this.orderBy = orderBy; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getMeetId() { return meetId; } public void setMeetId(String meetId) { this.meetId = meetId; } public String getType() { return type; } public void setType(String type) { this.type = type; } public Date getStTm() { return stTm; } public void setStTm(Date stTm) { this.stTm = stTm; } public Date getEnTm() { return enTm; } public void setEnTm(Date enTm) { this.enTm = enTm; } }