1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- namespace EMIS.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; }
-
-
-
-
- public virtual Sys_Dictionary Sys_Dictionary { get; set; }
- }
- }
|