AlertLog.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. package com.dgtly.system.domain;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.dgtly.common.annotation.Excel;
  5. import com.dgtly.common.core.domain.BaseEntity;
  6. /**
  7. * 弹框日志对象 alert_log
  8. *
  9. * @author chenyn
  10. * @date 2023-06-13
  11. */
  12. public class AlertLog extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** id */
  16. private Long alertLogId;
  17. /** 弹框配置id */
  18. @Excel(name = "弹框配置id")
  19. private Long alertId;
  20. /** 是否删除 */
  21. @Excel(name = "是否删除")
  22. private Long isDelete;
  23. /** 用户id */
  24. @Excel(name = "用户id")
  25. private Long userId;
  26. /** 登录名 */
  27. @Excel(name = "登录名")
  28. private String loginName;
  29. /** 弹框每日弹的次数 */
  30. @Excel(name = "弹框每日弹的次数")
  31. private Long alertNum;
  32. /** 用户类型0立邦员工1经销商 */
  33. @Excel(name = "用户类型0立邦员工1经销商")
  34. private String userType;
  35. private String isClearCache;
  36. public void setAlertLogId(Long alertLogId)
  37. {
  38. this.alertLogId = alertLogId;
  39. }
  40. public Long getAlertLogId()
  41. {
  42. return alertLogId;
  43. }
  44. public void setAlertId(Long alertId)
  45. {
  46. this.alertId = alertId;
  47. }
  48. public String getIsClearCache() {
  49. return isClearCache;
  50. }
  51. public void setIsClearCache(String isClearCache) {
  52. this.isClearCache = isClearCache;
  53. }
  54. public Long getAlertId()
  55. {
  56. return alertId;
  57. }
  58. public void setIsDelete(Long isDelete)
  59. {
  60. this.isDelete = isDelete;
  61. }
  62. public Long getIsDelete()
  63. {
  64. return isDelete;
  65. }
  66. public void setUserId(Long userId)
  67. {
  68. this.userId = userId;
  69. }
  70. public Long getUserId()
  71. {
  72. return userId;
  73. }
  74. public void setLoginName(String loginName)
  75. {
  76. this.loginName = loginName;
  77. }
  78. public String getLoginName()
  79. {
  80. return loginName;
  81. }
  82. public void setAlertNum(Long alertNum)
  83. {
  84. this.alertNum = alertNum;
  85. }
  86. public Long getAlertNum()
  87. {
  88. return alertNum;
  89. }
  90. public void setUserType(String userType)
  91. {
  92. this.userType = userType;
  93. }
  94. public String getUserType()
  95. {
  96. return userType;
  97. }
  98. @Override
  99. public String toString() {
  100. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  101. .append("alertLogId", getAlertLogId())
  102. .append("alertId", getAlertId())
  103. .append("createBy", getCreateBy())
  104. .append("createTime", getCreateTime())
  105. .append("updateBy", getUpdateBy())
  106. .append("updateTime", getUpdateTime())
  107. .append("isDelete", getIsDelete())
  108. .append("userId", getUserId())
  109. .append("loginName", getLoginName())
  110. .append("alertNum", getAlertNum())
  111. .append("userType", getUserType())
  112. .toString();
  113. }
  114. }