fa21fcb4c14dc0ee018b31b4d9c44a75e424f0dd.svn-base 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspRepeatCheckLogParam
  9. *
  10. * @author lune
  11. * @date 2019-9-7
  12. */
  13. public class BisInspRepeatCheckLogParam extends PageParam implements Serializable {
  14. @ApiModelProperty("复查表唯一标识")
  15. private String id;
  16. @ApiModelProperty("督查表id")
  17. private String regerId;
  18. @ApiModelProperty("复查时间")
  19. private Date intm;
  20. @ApiModelProperty("复查备注信息")
  21. private String note;
  22. @ApiModelProperty("提交复查用户id")
  23. private String persId;
  24. @ApiModelProperty("未来本表可用于记录用户操作督查表流程。0标识复查")
  25. private String type;
  26. public BisInspRepeatCheckLogParam() {
  27. }
  28. public String getId() {
  29. return id;
  30. }
  31. public void setId(String id) {
  32. this.id = id;
  33. }
  34. public String getRegerId() {
  35. return regerId;
  36. }
  37. public void setRegerId(String regerId) {
  38. this.regerId = regerId;
  39. }
  40. public Date getIntm() {
  41. return intm;
  42. }
  43. public void setIntm(Date intm) {
  44. this.intm = intm;
  45. }
  46. public String getNote() {
  47. return note;
  48. }
  49. public void setNote(String note) {
  50. this.note = note;
  51. }
  52. public String getPersId() {
  53. return persId;
  54. }
  55. public void setPersId(String persId) {
  56. this.persId = persId;
  57. }
  58. public String getType() {
  59. return type;
  60. }
  61. public void setType(String type) {
  62. this.type = type;
  63. }
  64. }