LcdReceiveUser.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.ruoyi.system.domain;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.ruoyi.common.annotation.Excel;
  5. import com.ruoyi.common.core.domain.BaseEntity;
  6. /**
  7. * 接收消息用户对象 lcd_receive_user
  8. *
  9. * @author ruoyi
  10. * @date 2023-01-14
  11. */
  12. public class LcdReceiveUser extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 主键 */
  16. private Long id;
  17. /** 消息id */
  18. @Excel(name = "消息id")
  19. private Long infoId;
  20. /** 用户手机号 */
  21. @Excel(name = "用户手机号")
  22. private String phonenumber;
  23. public void setId(Long id)
  24. {
  25. this.id = id;
  26. }
  27. public Long getId()
  28. {
  29. return id;
  30. }
  31. public void setInfoId(Long infoId)
  32. {
  33. this.infoId = infoId;
  34. }
  35. public Long getInfoId()
  36. {
  37. return infoId;
  38. }
  39. public void setPhonenumber(String phonenumber)
  40. {
  41. this.phonenumber = phonenumber;
  42. }
  43. public String getPhonenumber()
  44. {
  45. return phonenumber;
  46. }
  47. @Override
  48. public String toString() {
  49. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  50. .append("id", getId())
  51. .append("infoId", getInfoId())
  52. .append("phonenumber", getPhonenumber())
  53. .append("createBy", getCreateBy())
  54. .append("createTime", getCreateTime())
  55. .append("updateBy", getUpdateBy())
  56. .append("updateTime", getUpdateTime())
  57. .toString();
  58. }
  59. }