123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 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.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// Sys_Dictionary
- /// </summary>
- public partial class Sys_Dictionary
- {
- public Sys_Dictionary()
- {
- this.Sys_BatchModify = new HashSet<Sys_BatchModify>();
- this.Sys_DictionaryItem = new HashSet<Sys_DictionaryItem>();
- }
-
- /// <summary>
- /// DictionaryCode
- /// </summary>
- public string DictionaryCode { get; set; }
- /// <summary>
- /// Name
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// OrderNo
- /// </summary>
- public short OrderNo { get; set; }
- /// <summary>
- /// RecordStatus
- /// </summary>
- public int RecordStatus { get; set; }
- /// <summary>
- /// IsEditable
- /// </summary>
- public Nullable<bool> IsEditable { get; set; }
-
- /// <summary>
- /// Sys_BatchModify
- /// </summary>
- public virtual HashSet<Sys_BatchModify> Sys_BatchModify { get; set; }
- /// <summary>
- /// Sys_DictionaryItem
- /// </summary>
- public virtual HashSet<Sys_DictionaryItem> Sys_DictionaryItem { get; set; }
- }
- }
|