123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class Sys_DictionaryItem
- {
-
-
-
- public System.Guid DictionaryItemID { get; set; }
-
-
-
- public string Code { get; set; }
-
-
-
- public string DictionaryCode { get; set; }
-
-
-
- public Nullable<int> Value { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public short OrderNo { get; set; }
-
-
-
- public int RecordStatus { get; set; }
-
-
-
- public Nullable<bool> IsEditable { get; set; }
- }
- }
|