123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace YLShipBuildLandMap.Entity
- {
- public partial class SysDictionaryItem
- {
- public Guid DictionaryItemId { get; set; }
- public string Code { get; set; }
- public string DictionaryCode { get; set; }
- public int? Value { get; set; }
- public string Name { get; set; }
- public short OrderNo { get; set; }
- public int RecordStatus { get; set; }
- public bool? IsEditable { get; set; }
- public virtual SysDictionary DictionaryCodeNavigation { get; set; }
- }
- }
|