9b3bc70e471640f4dc59f4cd272ec9f8a415fa98.svn-base 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * BisInspMtprgSmsTmParam
  9. *
  10. * @author hjp
  11. * @date 2022-8-29
  12. */
  13. public class BisInspMtprgSmsTmParam 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 = "机构标识")
  20. @ApiModelProperty(value = "机构标识", name = "orgId")
  21. private String addVcd;
  22. // 一个月的几天
  23. @ApiParam(name = "一个月的几天")
  24. @ApiModelProperty(value = "一个月的几天", name = "daysOfMonth")
  25. private Long daysOfMonth;
  26. // 创建时间
  27. @ApiParam(name = "创建时间")
  28. @ApiModelProperty(value = "创建时间", name = "intm")
  29. private Date intm;
  30. // 修改时间
  31. @ApiParam(name = "修改时间")
  32. @ApiModelProperty(value = "修改时间", name = "uptm")
  33. private Date uptm;
  34. public BisInspMtprgSmsTmParam() {
  35. }
  36. public String getId() {
  37. return id;
  38. }
  39. public void setId(String id) {
  40. this.id = id;
  41. }
  42. public String getAddVcd() {
  43. return addVcd;
  44. }
  45. public void setAddVcd(String addVcd) {
  46. this.addVcd = addVcd;
  47. }
  48. public Long getDaysOfMonth() {
  49. return daysOfMonth;
  50. }
  51. public void setDaysOfMonth(Long daysOfMonth) {
  52. this.daysOfMonth = daysOfMonth;
  53. }
  54. public Date getIntm() {
  55. return intm;
  56. }
  57. public void setIntm(Date intm) {
  58. this.intm = intm;
  59. }
  60. public Date getUptm() {
  61. return uptm;
  62. }
  63. public void setUptm(Date uptm) {
  64. this.uptm = uptm;
  65. }
  66. }