| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- /**
- * BisInspUplogParam
- *
- * @author lhc
- * @date 2019-4-10
- */
- public class BisInspUplogParam extends PageParam implements Serializable {
- // ID
- @ApiParam(name = "ID")
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 人员ID
- @ApiParam(name = "人员ID")
- @ApiModelProperty(value = "人员ID", name = "persid")
- private String persid;
- // 开始时间
- @ApiParam(name = "开始时间")
- @ApiModelProperty(value = "开始时间", name = "stTm")
- private Date stTm;
- // 结束时间
- @ApiParam(name = "结束时间")
- @ApiModelProperty(value = "结束时间", name = "enTm")
- private Date enTm;
- public BisInspUplogParam() {
- }
- 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 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;
- }
- }
|