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.
|
|
package com.qyft.ms.model.entity;
import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import lombok.EqualsAndHashCode;
/** * <p> * 系统配置 * </p> * * @author 郭安鹏 * @since 2025-02-17 */ @EqualsAndHashCode(callSuper = false) @Schema(description = "系统配置") @TableName("sys_settings") @Data public class SysSettings {
@Schema(description = "主键id") private Long id;
@Schema(description = "父id") private Long parentId;
@Schema(description = "名称") private String name;
@Schema(description = "code") private String code;
@Schema(description = "配置值") private String value1;
@Schema(description = "配置值") private String value2;
@Schema(description = "配置值") private String value3;
}
|