using System.ComponentModel.DataAnnotations;
using WTA.Shared.Attributes;
using WTA.Shared.Domain;
namespace WTA.Application.Identity.Entities.SystemManagement;
[SystemManagement]
[Order(4)]
[Display(Name = "通用代码")]
public class CodeSetting : BaseEntity
{
///
/// 项目
///
[Display(Name = "项目")]
public string Project { set; get; } = null!;
///
/// 值
///
[Display(Name = "值")]
public string Value { set; get; } = null!;
///
/// 描述
///
[Display(Name = "描述")]
public string Description { set; get; } = null!;
}