1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace YLShipBuildLandMap.Entity
- {
- public partial class SysDictionary
- {
- public SysDictionary()
- {
- SysDictionaryItem = new HashSet<SysDictionaryItem>();
- }
- 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> SysDictionaryItem { get; set; }
- }
- }
|