You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
863 B

5 months ago
  1. package com.qyft.ms.model.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import io.swagger.v3.oas.annotations.media.Schema;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. /**
  7. * <p>
  8. * 系统配置
  9. * </p>
  10. *
  11. * @author 郭安鹏
  12. * @since 2025-02-17
  13. */
  14. @EqualsAndHashCode(callSuper = false)
  15. @Schema(description = "系统配置")
  16. @TableName("sys_settings")
  17. @Data
  18. public class SysSettings {
  19. @Schema(description = "主键id")
  20. private Long id;
  21. @Schema(description = "父id")
  22. private Long parentId;
  23. @Schema(description = "名称")
  24. private String name;
  25. @Schema(description = "code")
  26. private String code;
  27. @Schema(description = "配置值")
  28. private String value1;
  29. @Schema(description = "配置值")
  30. private String value2;
  31. @Schema(description = "配置值")
  32. private String value3;
  33. }