using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Text; namespace Shentun.Peis.CommonTables { public class CommonTableDto : AuditedEntityDtoName { /// /// 对照值 /// public string DataCode { get; set; } = null!; /// /// 名称 /// public string DisplayName { get; set; } = null!; /// /// 通用字段对照类别 /// public string CommonTableTypeId { get; set; } public string SimpleCode { get; set; } = null!; public int DisplayOrder { get; set; } } }