879a1481c325843450a817eeb6d9161a43381328.svn-base 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:BisInspMtprgSmsTm
  9. *
  10. * @author hjp
  11. * @date 2022-8-29
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspMtprgSmsTm extends BaseBean implements Serializable {
  15. // ID
  16. @ApiModelProperty(value="ID",name="id")
  17. private String id;
  18. // 机构ID
  19. @ApiModelProperty(value="机构标识",name="addVcd")
  20. private String addVcd;
  21. // 一个月的几天
  22. @ApiModelProperty(value="一个月的几天",name="daysOfMonth")
  23. private Long daysOfMonth;
  24. // 创建时间
  25. @ApiModelProperty(value="创建时间",name="intm")
  26. private Date intm;
  27. // 修改时间
  28. @ApiModelProperty(value="修改时间",name="uptm")
  29. private Date uptm;
  30. public BisInspMtprgSmsTm() {
  31. }
  32. public String getId() {
  33. return id;
  34. }
  35. public void setId(String id) {
  36. this.id = id;
  37. }
  38. public String getAddVcd() {
  39. return addVcd;
  40. }
  41. public void setAddVcd(String addVcd) {
  42. this.addVcd = addVcd;
  43. }
  44. public Long getDaysOfMonth() {
  45. return daysOfMonth;
  46. }
  47. public void setDaysOfMonth(Long daysOfMonth) {
  48. this.daysOfMonth = daysOfMonth;
  49. }
  50. public Date getIntm() {
  51. return intm;
  52. }
  53. public void setIntm(Date intm) {
  54. this.intm = intm;
  55. }
  56. public Date getUptm() {
  57. return uptm;
  58. }
  59. public void setUptm(Date uptm) {
  60. this.uptm = uptm;
  61. }
  62. @Override
  63. public String toString() {
  64. return "BisInspMtprgSmsTm [" + "id=" + id + ", orgId=" + addVcd + ", daysOfMonth=" + daysOfMonth + ", intm=" + intm + ", uptm=" + uptm + "]";
  65. }
  66. }