using System; using System.Collections.Generic; #nullable disable namespace YLShipBuildLandMap.Entity { public partial class SysDictionary { public SysDictionary() { SysDictionaryItem = new HashSet(); } public string DictionaryCode { get; set; } public string Name { get; set; } public short OrderNo { get; set; } public int RecordStatus { get; set; } public bool? IsEditable { get; set; } public virtual ICollection SysDictionaryItem { get; set; } } }