| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- 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;
- }
- }
|