package com.gear.swx.domain;
|
|
import com.gear.common.annotation.Excel;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.gear.common.core.domain.BusiBaseEntity;
|
|
/**
|
* 系统参数对象 swx_settings
|
*
|
* @author czx
|
* @date 2023-11-18
|
*/
|
@Data
|
@TableName("swx_settings")
|
public class SwxSettings extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** 参数名称 */
|
@Excel(name = "参数名称")
|
private String name;
|
|
/** 参数类型 */
|
@Excel(name = "参数类型")
|
private Integer type;
|
|
/** 参数状态 */
|
@Excel(name = "参数状态")
|
private Integer status;
|
|
/** 参数键 */
|
@Excel(name = "参数键")
|
private String paramKey;
|
|
/** 参数值 */
|
@Excel(name = "参数值")
|
private String paramValue;
|
|
/** 参数可选值 */
|
@Excel(name = "参数可选值")
|
private String paramChoiceValue;
|
|
/** 排序 */
|
@Excel(name = "排序")
|
private Integer sortNum;
|
|
}
|