using System.Text.Json.Serialization;
using SqlSugar;
namespace WcsMain.DataBase.TableEntity;
///
/// t_app_config 的实体
///
[SugarTable("tbl_app_config")]
public class AppConfig
{
///
/// 配置键
///
[SugarColumn(ColumnName = "config_key", IsPrimaryKey = true)]
[JsonPropertyName("configKey")]
public string? ConfigKey { get; set; }
///
/// 配置名称
///
[SugarColumn(ColumnName = "config_name")]
[JsonPropertyName("configName")]
public string? ConfigName { get; set; }
///
/// 配置类型
///
[SugarColumn(ColumnName = "config_type")]
[JsonPropertyName("configType")]
public string? ConfigType { get; set; }
///
/// 配置值
///
[SugarColumn(ColumnName = "config_value")]
[JsonPropertyName("configValue")]
public string? ConfigValue { get; set; }
///
/// 配置备注
///
[SugarColumn(ColumnName = "remark")]
[JsonPropertyName("remark")]
public string? Remark { get; set; }
}