SysDictionary.cs 594 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class SysDictionary
  7. {
  8. public SysDictionary()
  9. {
  10. SysDictionaryItem = new HashSet<SysDictionaryItem>();
  11. }
  12. public string DictionaryCode { get; set; }
  13. public string Name { get; set; }
  14. public short OrderNo { get; set; }
  15. public int RecordStatus { get; set; }
  16. public bool? IsEditable { get; set; }
  17. public virtual ICollection<SysDictionaryItem> SysDictionaryItem { get; set; }
  18. }
  19. }