using System; using System.Collections.Generic; 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 { /// /// 数据字典项 /// public class DictionaryItems:Entity { public string DictionaryCode { get; set; } public string Key { get; set; } public string Value { get; set; } public string SubValue { get; set; } public bool Status { get; set; } public DateTime Createtime { get; set; } public DataDictionary Dictionary { get; set; } } }