7e26b8a0e620c32f8ea8fe316fb9ad47e833d948.svn-base 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.util.Date;
  6. import java.io.Serializable;
  7. /**
  8. * BisInspUplogParam
  9. *
  10. * @author lhc
  11. * @date 2019-4-10
  12. */
  13. public class BisInspUplogParam extends PageParam implements Serializable {
  14. // ID
  15. @ApiParam(name = "ID")
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 人员ID
  19. @ApiParam(name = "人员ID")
  20. @ApiModelProperty(value = "人员ID", name = "persid")
  21. private String persid;
  22. // 开始时间
  23. @ApiParam(name = "开始时间")
  24. @ApiModelProperty(value = "开始时间", name = "stTm")
  25. private Date stTm;
  26. // 结束时间
  27. @ApiParam(name = "结束时间")
  28. @ApiModelProperty(value = "结束时间", name = "enTm")
  29. private Date enTm;
  30. public BisInspUplogParam() {
  31. }
  32. public String getId() {
  33. return id;
  34. }
  35. public void setId(String id) {
  36. this.id = id;
  37. }
  38. public String getPersid() {
  39. return persid;
  40. }
  41. public void setPersid(String persid) {
  42. this.persid = persid;
  43. }
  44. public Date getStTm() {
  45. return stTm;
  46. }
  47. public void setStTm(Date stTm) {
  48. this.stTm = stTm;
  49. }
  50. public Date getEnTm() {
  51. return enTm;
  52. }
  53. public void setEnTm(Date enTm) {
  54. this.enTm = enTm;
  55. }
  56. }