ChatConfig.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package org.ruoyi.domain;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Data;
  4. import lombok.EqualsAndHashCode;
  5. import org.ruoyi.common.mybatis.core.domain.BaseEntity;
  6. import java.io.Serial;
  7. /**
  8. * 配置信息对象 chat_config
  9. *
  10. * @author ageerle
  11. * @date 2025-04-08
  12. */
  13. @Data
  14. @EqualsAndHashCode(callSuper = true)
  15. @TableName("chat_config")
  16. public class ChatConfig extends BaseEntity {
  17. @Serial
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. * 主键
  21. */
  22. @TableId(value = "id")
  23. private Long id;
  24. /**
  25. * 配置类型
  26. */
  27. private String category;
  28. /**
  29. * 配置名称
  30. */
  31. private String configName;
  32. /**
  33. * 配置值
  34. */
  35. private String configValue;
  36. /**
  37. * 说明
  38. */
  39. private String configDict;
  40. /**
  41. * 备注
  42. */
  43. private String remark;
  44. /**
  45. * 版本
  46. */
  47. @Version
  48. private Long version;
  49. /**
  50. * 删除标志(0代表存在 1代表删除)
  51. */
  52. @TableLogic
  53. private String delFlag;
  54. /**
  55. * 更新IP
  56. */
  57. private String updateIp;
  58. }