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