using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp.Domain.Entities; namespace Syc.Basic.Web.WMS.Entitys { /// /// 数据字典 /// [Table("DataDictionary")] public class DataDictionary:Entity { [Key] public string Code { get; set; } public string Key { get; set; } public string Title { get; set; } public string Description { get; set; } public int Order { get; set; } public bool Status { get; set; } public DateTime Createtime { get; set; } public List DictionaryItems { get; set; } public override object[] GetKeys() { return new object[] { Code }; } } }