人民医院API

T_Sys_DictionaryValue.cs 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. using System;
  2. namespace RMYY_CallCenter_Api.Model
  3. {
  4. /// <summary>
  5. /// T_Sys_DictionaryValue:实体类(属性说明自动提取数据库字段的描述信息)
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_Sys_DictionaryValue
  9. {
  10. public T_Sys_DictionaryValue()
  11. { }
  12. #region Model
  13. private int _f_dictionaryvalueid;
  14. private string _f_dictionaryflag;
  15. private string _f_valuecode;
  16. private string _f_name;
  17. private int? _f_sort;
  18. private string _f_describe;
  19. private bool _f_state;
  20. /// <summary>
  21. ///
  22. /// </summary>
  23. public int F_DictionaryValueId
  24. {
  25. set { _f_dictionaryvalueid = value; }
  26. get { return _f_dictionaryvalueid; }
  27. }
  28. /// <summary>
  29. ///
  30. /// </summary>
  31. public string F_DictionaryFlag
  32. {
  33. set { _f_dictionaryflag = value; }
  34. get { return _f_dictionaryflag; }
  35. }
  36. /// <summary>
  37. ///
  38. /// </summary>
  39. public string F_ValueCode
  40. {
  41. set { _f_valuecode = value; }
  42. get { return _f_valuecode; }
  43. }
  44. /// <summary>
  45. ///
  46. /// </summary>
  47. public string F_Name
  48. {
  49. set { _f_name = value; }
  50. get { return _f_name; }
  51. }
  52. /// <summary>
  53. ///
  54. /// </summary>
  55. public int? F_Sort
  56. {
  57. set { _f_sort = value; }
  58. get { return _f_sort; }
  59. }
  60. /// <summary>
  61. ///
  62. /// </summary>
  63. public string F_Describe
  64. {
  65. set { _f_describe = value; }
  66. get { return _f_describe; }
  67. }
  68. /// <summary>
  69. ///
  70. /// </summary>
  71. public bool F_State
  72. {
  73. set { _f_state = value; }
  74. get { return _f_state; }
  75. }
  76. #endregion Model
  77. }
  78. }