cfdb44178eb7f1c40afd63e4f7b76a39cc83e2f7.svn-base 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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:GwSmsLog
  9. *
  10. * @author
  11. * @date 2022-2-7
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class GwSmsLog extends BaseBean implements Serializable {
  15. @ApiModelProperty("ID")
  16. private String id;
  17. @ApiModelProperty("消息类型(0:系统消息,1:月报提醒)")
  18. private String type;
  19. @ApiModelProperty("短信号码")
  20. private String phone;
  21. @ApiModelProperty("短信内容")
  22. private String content;
  23. @ApiModelProperty("短信返回值")
  24. private String returnCode;
  25. @ApiModelProperty("短信中的验证码")
  26. private String code;
  27. @ApiModelProperty("调用短信的接口")
  28. private String func;
  29. @ApiModelProperty("IP地址")
  30. private String ip;
  31. @ApiModelProperty("发送者ID")
  32. private String userId;
  33. @ApiModelProperty("插入时间")
  34. private Date intm;
  35. @ApiModelProperty("关联用户ID")
  36. private String relUserId;
  37. public String getId() {
  38. return id;
  39. }
  40. public void setId(String id) {
  41. this.id = id;
  42. }
  43. public String getType() {
  44. return type;
  45. }
  46. public void setType(String type) {
  47. this.type = type;
  48. }
  49. public String getPhone() {
  50. return phone;
  51. }
  52. public void setPhone(String phone) {
  53. this.phone = phone;
  54. }
  55. public String getContent() {
  56. return content;
  57. }
  58. public void setContent(String content) {
  59. this.content = content;
  60. }
  61. public String getReturnCode() {
  62. return returnCode;
  63. }
  64. public void setReturnCode(String returnCode) {
  65. this.returnCode = returnCode;
  66. }
  67. public String getCode() {
  68. return code;
  69. }
  70. public void setCode(String code) {
  71. this.code = code;
  72. }
  73. public String getFunc() {
  74. return func;
  75. }
  76. public void setFunc(String func) {
  77. this.func = func;
  78. }
  79. public String getIp() {
  80. return ip;
  81. }
  82. public void setIp(String ip) {
  83. this.ip = ip;
  84. }
  85. public String getUserId() {
  86. return userId;
  87. }
  88. public void setUserId(String userId) {
  89. this.userId = userId;
  90. }
  91. public Date getIntm() {
  92. return intm;
  93. }
  94. public void setIntm(Date intm) {
  95. this.intm = intm;
  96. }
  97. public String getRelUserId() {
  98. return relUserId;
  99. }
  100. public void setRelUserId(String relUserId) {
  101. this.relUserId = relUserId;
  102. }
  103. @Override
  104. public String toString() {
  105. return "GwSmsLog [" + "id=" + id + ", type=" + type + ", phone=" + phone + ", content=" + content + ", returnCode=" + returnCode + ", code=" + code + ", func=" + func + ", ip=" + ip + ", userId=" + userId + ", intm=" + intm + ", relUserId=" + relUserId + "]";
  106. }
  107. }