ChatRobConfig.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package org.ruoyi.domain;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Data;
  4. import lombok.EqualsAndHashCode;
  5. import org.ruoyi.core.domain.BaseEntity;
  6. import java.io.Serial;
  7. /**
  8. * 聊天机器人配置对象 chat_rob_config
  9. *
  10. * @author ageerle
  11. * @date 2025-04-08
  12. */
  13. @Data
  14. @EqualsAndHashCode(callSuper = true)
  15. @TableName("chat_rob_config")
  16. public class ChatRobConfig 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 Long userId;
  28. /**
  29. * 机器人名称
  30. */
  31. private String botName;
  32. /**
  33. * 机器唯一码
  34. */
  35. private String uniqueKey;
  36. /**
  37. * 默认好友回复开关
  38. */
  39. private String defaultFriend;
  40. /**
  41. * 默认群回复开关
  42. */
  43. private String defaultGroup;
  44. /**
  45. * 机器人状态 0正常 1启用
  46. */
  47. private String enable;
  48. /**
  49. * 备注
  50. */
  51. private String remark;
  52. }