| 1234567891011121314151617 |
- using SqlSugar;
- namespace SKMC.Api.Common.DB.Entity
- {
- /// <summary>
- /// 配置类型的Entity模板
- /// </summary>
- public class ConfigEntity : BaseEntity
- {
- public string Code { get; set; }
- public string Name { get; set; }
- [SugarColumn(IsNullable = true)]
- public string Note { get; set; }
- }
- }
|