SysDictionaryItem.cs 602 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class SysDictionaryItem
  7. {
  8. public Guid DictionaryItemId { get; set; }
  9. public string Code { get; set; }
  10. public string DictionaryCode { get; set; }
  11. public int? Value { get; set; }
  12. public string Name { get; set; }
  13. public short OrderNo { get; set; }
  14. public int RecordStatus { get; set; }
  15. public bool? IsEditable { get; set; }
  16. public virtual SysDictionary DictionaryCodeNavigation { get; set; }
  17. }
  18. }