33603863a1295ee77011b9c6a0dc719ce3b1d8f6.svn-base 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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:BisInspMtprgSms
  9. *
  10. * @author
  11. * @date 2022-2-7
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspMtprgSms extends BaseBean implements Serializable {
  15. @ApiModelProperty("ID")
  16. private String id;
  17. @ApiModelProperty("用户ID")
  18. private String userId;
  19. @ApiModelProperty("用户名称")
  20. private String userName;
  21. @ApiModelProperty("用户电话号码")
  22. private String phone;
  23. @ApiModelProperty("是否开通短信提醒(0:不发送,1:发送)")
  24. private String isRemind;
  25. @ApiModelProperty("插入时间")
  26. private Date intm;
  27. @ApiModelProperty("更新时间")
  28. private Date uptm;
  29. @ApiModelProperty("创建人ID")
  30. private String createrId;
  31. public String getId() {
  32. return id;
  33. }
  34. public void setId(String id) {
  35. this.id = id;
  36. }
  37. public String getUserId() {
  38. return userId;
  39. }
  40. public void setUserId(String userId) {
  41. this.userId = userId;
  42. }
  43. public String getUserName() {
  44. return userName;
  45. }
  46. public void setUserName(String userName) {
  47. this.userName = userName;
  48. }
  49. public String getPhone() {
  50. return phone;
  51. }
  52. public void setPhone(String phone) {
  53. this.phone = phone;
  54. }
  55. public String getIsRemind() {
  56. return isRemind;
  57. }
  58. public void setIsRemind(String isRemind) {
  59. this.isRemind = isRemind;
  60. }
  61. public Date getIntm() {
  62. return intm;
  63. }
  64. public void setIntm(Date intm) {
  65. this.intm = intm;
  66. }
  67. public Date getUptm() {
  68. return uptm;
  69. }
  70. public void setUptm(Date uptm) {
  71. this.uptm = uptm;
  72. }
  73. public String getCreaterId() {
  74. return createrId;
  75. }
  76. public void setCreaterId(String createrId) {
  77. this.createrId = createrId;
  78. }
  79. @Override
  80. public String toString() {
  81. return "BisInspMtprgSms [" + "id=" + id + ", userId=" + userId + ", userName=" + userName + ", phone=" + phone + ", isRemind=" + isRemind + ", intm=" + intm + ", uptm=" + uptm + ", createrId=" + createrId + "]";
  82. }
  83. }