You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
662 B
29 lines
662 B
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
|
|
{
|
|
/// <summary>
|
|
/// 项目
|
|
/// </summary>
|
|
[Display(Name = "项目")]
|
|
public string Project { set; get; } = null!;
|
|
|
|
/// <summary>
|
|
/// 值
|
|
/// </summary>
|
|
[Display(Name = "值")]
|
|
public string Value { set; get; } = null!;
|
|
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
[Display(Name = "描述")]
|
|
public string Description { set; get; } = null!;
|
|
}
|
|
|