人民医院API

T_Sys_DictDrug.cs 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. using System;
  2. namespace RMYY_CallCenter_Api.Model
  3. {
  4. /// <summary>
  5. /// T_Sys_DictDrug:实体类(属性说明自动提取数据库字段的描述信息)
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_Sys_DictDrug
  9. {
  10. public T_Sys_DictDrug()
  11. { }
  12. #region Model
  13. private int _f_id;
  14. private int? _f_dictdrugid;
  15. private string _cdgdispcode;
  16. private string _cdgname;
  17. private string _cdgnamecode;
  18. private string _cdggeneralname;
  19. private string _cdgspecification;
  20. private decimal? _idgmaxstock;
  21. private decimal? _idgminstock;
  22. private string _cdgdescription;
  23. private decimal? _idgstdprice;
  24. private decimal? _idglocalstdprice;
  25. private DateTime? _f_createtime;
  26. private int? _f_isdelete;
  27. /// <summary>
  28. ///
  29. /// </summary>
  30. public int F_ID
  31. {
  32. set { _f_id = value; }
  33. get { return _f_id; }
  34. }
  35. /// <summary>
  36. /// 药品id
  37. /// </summary>
  38. public int? F_DictDrugid
  39. {
  40. set { _f_dictdrugid = value; }
  41. get { return _f_dictdrugid; }
  42. }
  43. /// <summary>
  44. /// 药品编码
  45. /// </summary>
  46. public string cDgDispCode
  47. {
  48. set { _cdgdispcode = value; }
  49. get { return _cdgdispcode; }
  50. }
  51. /// <summary>
  52. /// 通用名
  53. /// </summary>
  54. public string cDgName
  55. {
  56. set { _cdgname = value; }
  57. get { return _cdgname; }
  58. }
  59. /// <summary>
  60. /// 输入编码(拼音名)
  61. /// </summary>
  62. public string cDgNameCode
  63. {
  64. set { _cdgnamecode = value; }
  65. get { return _cdgnamecode; }
  66. }
  67. /// <summary>
  68. /// 商品名
  69. /// </summary>
  70. public string cDgGeneralName
  71. {
  72. set { _cdggeneralname = value; }
  73. get { return _cdggeneralname; }
  74. }
  75. /// <summary>
  76. /// 规格
  77. /// </summary>
  78. public string cDgSpecification
  79. {
  80. set { _cdgspecification = value; }
  81. get { return _cdgspecification; }
  82. }
  83. /// <summary>
  84. /// 最高库存
  85. /// </summary>
  86. public decimal? iDgMaxstock
  87. {
  88. set { _idgmaxstock = value; }
  89. get { return _idgmaxstock; }
  90. }
  91. /// <summary>
  92. /// 最低库存
  93. /// </summary>
  94. public decimal? iDgMinstock
  95. {
  96. set { _idgminstock = value; }
  97. get { return _idgminstock; }
  98. }
  99. /// <summary>
  100. /// 药品说明
  101. /// </summary>
  102. public string cDgDescription
  103. {
  104. set { _cdgdescription = value; }
  105. get { return _cdgdescription; }
  106. }
  107. /// <summary>
  108. /// 国家限价
  109. /// </summary>
  110. public decimal? iDgStdPrice
  111. {
  112. set { _idgstdprice = value; }
  113. get { return _idgstdprice; }
  114. }
  115. /// <summary>
  116. /// 地区限价
  117. /// </summary>
  118. public decimal? iDgLocalStdPrice
  119. {
  120. set { _idglocalstdprice = value; }
  121. get { return _idglocalstdprice; }
  122. }
  123. /// <summary>
  124. ///
  125. /// </summary>
  126. public DateTime? F_CreateTime
  127. {
  128. set { _f_createtime = value; }
  129. get { return _f_createtime; }
  130. }
  131. /// <summary>
  132. ///
  133. /// </summary>
  134. public int? F_IsDelete
  135. {
  136. set { _f_isdelete = value; }
  137. get { return _f_isdelete; }
  138. }
  139. /// <summary>
  140. /// 生产厂家
  141. /// </summary>
  142. public string cManufacturer
  143. {
  144. set;get;
  145. }
  146. /// <summary>
  147. /// 单价
  148. /// </summary>
  149. public decimal? iRetail
  150. {
  151. set; get;
  152. }
  153. #endregion Model
  154. }
  155. }