1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class Sys_Dictionary
- {
- public Sys_Dictionary()
- {
- this.CF_DataCenterCodeTranslate = new HashSet<CF_DataCenterCodeTranslate>();
- this.Sys_BatchModify = new HashSet<Sys_BatchModify>();
- this.Sys_DictionaryItem = new HashSet<Sys_DictionaryItem>();
- }
-
-
-
-
- public string DictionaryCode { 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 HashSet<CF_DataCenterCodeTranslate> CF_DataCenterCodeTranslate { get; set; }
-
-
-
- public virtual HashSet<Sys_BatchModify> Sys_BatchModify { get; set; }
-
-
-
- public virtual HashSet<Sys_DictionaryItem> Sys_DictionaryItem { get; set; }
- }
- }
|