//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace EMIS.Entities { #pragma warning disable 1573 using System; using System.Collections.Generic; /// /// Sys_Dictionary /// public partial class Sys_Dictionary { public Sys_Dictionary() { this.Sys_BatchModify = new HashSet(); this.Sys_DictionaryItem = new HashSet(); } /// /// DictionaryCode /// public string DictionaryCode { get; set; } /// /// Name /// public string Name { get; set; } /// /// OrderNo /// public short OrderNo { get; set; } /// /// RecordStatus /// public int RecordStatus { get; set; } /// /// IsEditable /// public Nullable IsEditable { get; set; } /// /// Sys_BatchModify /// public virtual HashSet Sys_BatchModify { get; set; } /// /// Sys_DictionaryItem /// public virtual HashSet Sys_DictionaryItem { get; set; } } }