Sys_Dictionary.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace EMIS.Entities
  10. {
  11. #pragma warning disable 1573
  12. using System;
  13. using System.Collections.Generic;
  14. /// <summary>
  15. /// Sys_Dictionary
  16. /// </summary>
  17. public partial class Sys_Dictionary
  18. {
  19. public Sys_Dictionary()
  20. {
  21. this.Sys_BatchModify = new HashSet<Sys_BatchModify>();
  22. this.Sys_DictionaryItem = new HashSet<Sys_DictionaryItem>();
  23. }
  24. /// <summary>
  25. /// DictionaryCode
  26. /// </summary>
  27. public string DictionaryCode { get; set; }
  28. /// <summary>
  29. /// Name
  30. /// </summary>
  31. public string Name { get; set; }
  32. /// <summary>
  33. /// OrderNo
  34. /// </summary>
  35. public short OrderNo { get; set; }
  36. /// <summary>
  37. /// RecordStatus
  38. /// </summary>
  39. public int RecordStatus { get; set; }
  40. /// <summary>
  41. /// IsEditable
  42. /// </summary>
  43. public Nullable<bool> IsEditable { get; set; }
  44. /// <summary>
  45. /// Sys_BatchModify
  46. /// </summary>
  47. public virtual HashSet<Sys_BatchModify> Sys_BatchModify { get; set; }
  48. /// <summary>
  49. /// Sys_DictionaryItem
  50. /// </summary>
  51. public virtual HashSet<Sys_DictionaryItem> Sys_DictionaryItem { get; set; }
  52. }
  53. }