新增系统配置

This commit is contained in:
izory
2021-09-30 14:55:24 +08:00
parent 2b10934e09
commit de13b103c9
11 changed files with 624 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace ZR.Model.System
{
/// <summary>
/// 参数配置,数据实体对象
///
/// @author zhaorui
/// @date 2021-09-29
/// </summary>
[SqlSugar.SugarTable("sys_config")]
public class SysConfig: SysBase
{
/// <summary>
/// 描述 :
/// 空值 :False
/// </summary>
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ConfigId { get; set; }
/// <summary>
/// 描述 :
/// 空值 :True
/// </summary>
public string ConfigName { get; set; }
/// <summary>
/// 描述 :
/// 空值 :True
/// </summary>
public string ConfigKey { get; set; }
/// <summary>
/// 描述 :
/// 空值 :True
/// </summary>
public string ConfigValue { get; set; }
/// <summary>
/// 描述 :
/// 空值 :True
/// </summary>
public string ConfigType { get; set; }
}
}