package com.casic.entity;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Builder;

@Builder
@ApiModel(value = "NbParamConfig", description = "NB平台配置参数")
@TableName("nb_param_config")
public class NbParamConfig {
    @ApiModelProperty(notes = "主键", dataType = "String")
    @TableId(type = IdType.AUTO)
    private String id;
    @ApiModelProperty(notes = "参数名", dataType = "String")
    private String param;
    @ApiModelProperty(notes = "参数值", dataType = "String")
    private String value;
}
