优化代码注释&命名空间

This commit is contained in:
不做码农
2023-05-04 18:20:18 +08:00
parent 547945d85b
commit a89762e070
47 changed files with 224 additions and 353 deletions

View File

@@ -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; }
}
}