优化代码注释&命名空间
This commit is contained in:
@@ -1,46 +1,38 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ZR.Model.System
|
||||
{
|
||||
/// <summary>
|
||||
/// 参数配置,数据实体对象
|
||||
///
|
||||
/// @author zhaorui
|
||||
/// @author mr.zhao
|
||||
/// @date 2021-09-29
|
||||
/// </summary>
|
||||
[SugarTable("sys_config")]
|
||||
[Tenant("0")]
|
||||
public class SysConfig: SysBase
|
||||
public class SysConfig : SysBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 描述 :
|
||||
/// 空值 :False
|
||||
/// 配置id
|
||||
/// </summary>
|
||||
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||||
[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
|
||||
/// 系统内置(Y是 N否)
|
||||
/// </summary>
|
||||
public string ConfigType { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user