SysSmsLogEntity.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * Copyright (c) 2018 业主系统 All rights reserved.
  3. * <p>
  4. * https://www.yezhu.io
  5. * <p>
  6. * 版权所有,侵权必究!
  7. */
  8. package com.kioor.common.entity;
  9. import com.baomidou.mybatisplus.annotation.TableField;
  10. import com.baomidou.mybatisplus.annotation.TableName;
  11. import lombok.Data;
  12. import lombok.EqualsAndHashCode;
  13. /**
  14. * 短信日志
  15. *
  16. * @author Mark sunlightcs@gmail.com
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @TableName("sys_sms_log")
  21. public class SysSmsLogEntity extends BaseEntity {
  22. /**
  23. * 短信编码
  24. */
  25. private String smsCode;
  26. /**
  27. * 平台类型
  28. */
  29. private Integer platform;
  30. /**
  31. * 手机号
  32. */
  33. private String mobile;
  34. /**
  35. * 参数1
  36. */
  37. @TableField("params_1")
  38. private String params1;
  39. /**
  40. * 参数2
  41. */
  42. @TableField("params_2")
  43. private String params2;
  44. /**
  45. * 参数3
  46. */
  47. @TableField("params_3")
  48. private String params3;
  49. /**
  50. * 参数4
  51. */
  52. @TableField("params_4")
  53. private String params4;
  54. /**
  55. * 发送状态 0:失败 1:成功
  56. */
  57. private Integer status;
  58. }