MoblieProblemModel.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. namespace PMS.EntityModels.MoblieProblemRegist
  2. {
  3. using QWPlatform.DataIntface.Database;
  4. using QWPlatform.Models;
  5. using System;
  6. /// <summary>
  7. /// 测试实体类
  8. /// </summary>
  9. [Table("项目问题记录")]
  10. public class MoblieProblemModel : DataModelBase
  11. {
  12. //默认不带数据工厂构造
  13. /// <summary>
  14. /// Initializes a new instance of the <see cref="MoblieProblemModel"/> class.
  15. /// </summary>
  16. public MoblieProblemModel()
  17. {
  18. }
  19. //带有数据工厂的实例化,可以直接操作数据
  20. /// <summary>
  21. /// Initializes a new instance of the <see cref="MoblieProblemModel"/> class.
  22. /// </summary>
  23. /// <param name="factory">The factory<see cref="DataFactory"/></param>
  24. public MoblieProblemModel(DataFactory factory)
  25. : base(factory)
  26. {
  27. }
  28. /// <summary>
  29. /// Gets or sets the ID
  30. /// </summary>
  31. [FieldBase("ID", "", "", true, false, "", 36, 0, "VARCHAR2")]
  32. public string ID { get; set; }
  33. /// <summary>
  34. /// Gets or sets the BH
  35. /// </summary>
  36. [FieldBase("编号", "", "", false, false, "", 10, 0, "VARCHAR2")]
  37. public string BH { get; set; }
  38. /// <summary>
  39. /// Gets or sets the XMID
  40. /// </summary>
  41. [FieldBase("项目ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
  42. public string XMID { get; set; }
  43. /// <summary>
  44. /// Gets or sets the ZDID
  45. /// </summary>
  46. [FieldBase("站点ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
  47. public string ZDID { get; set; }
  48. /// <summary>
  49. /// Gets or sets the CPID
  50. /// </summary>
  51. [FieldBase("产品ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
  52. public string CPID { get; set; }
  53. /// <summary>
  54. /// Gets or sets the KSM
  55. /// </summary>
  56. [FieldBase("科室名", "", "", false, false, "", 10, 0, "VARCHAR2")]
  57. public string KSM { get; set; }
  58. /// <summary>
  59. /// Gets or sets the YHXM
  60. /// </summary>
  61. [FieldBase("用户姓名", "", "", false, false, "", 50, 0, "VARCHAR2")]
  62. public string YHXM { get; set; }
  63. /// <summary>
  64. /// Gets or sets the LY
  65. /// </summary>
  66. [FieldBase("来源", "", "", false, false, "", 1, 0, "NUMBER")]
  67. public int? LY { get; set; }
  68. /// <summary>
  69. /// Gets or sets the WTMS
  70. /// </summary>
  71. [FieldBase("问题描述", "", "", false, false, "", 4000, 0, "CLOB")]
  72. public string WTMS { get; set; }
  73. /// <summary>
  74. /// Gets or sets the DJSJ
  75. /// </summary>
  76. [FieldBase("登记时间", "", "", false, false, "", 7, 0, "DATE")]
  77. public DateTime? DJSJ { get; set; }
  78. /// <summary>
  79. /// Gets or sets the DJRID
  80. /// </summary>
  81. [FieldBase("登记人ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
  82. public string DJRID { get; set; }
  83. /// <summary>
  84. /// Gets or sets the DQCLR
  85. /// </summary>
  86. [FieldBase("当前处理人", "", "", false, false, "", 30, 0, "VARCHAR2")]
  87. public string DQCLR { get; set; }
  88. /// <summary>
  89. /// Gets or sets the CLSM
  90. /// </summary>
  91. [FieldBase("处理说明", "", "", false, false, "", 500, 0, "VARCHAR2")]
  92. public string CLSM { get; set; }
  93. /// <summary>
  94. /// Gets or sets the ZT
  95. /// </summary>
  96. [FieldBase("状态", "", "", false, false, "", 2, 0, "NUMBER")]
  97. public int? ZT { get; set; }
  98. /// <summary>
  99. /// Gets or sets the XMCL
  100. /// </summary>
  101. [FieldBase("项目处理", "", "", false, false, "", 1, 0, "NUMBER")]
  102. public int? XMCL { get; set; }
  103. /// <summary>
  104. /// Gets or sets the JSZC
  105. /// </summary>
  106. [FieldBase("技术支持", "", "", false, false, "", 1, 0, "NUMBER")]
  107. public int? JSZC { get; set; }
  108. /// <summary>
  109. /// Gets or sets the YFXZ
  110. /// </summary>
  111. [FieldBase("研发协助", "", "", false, false, "", 1, 0, "NUMBER")]
  112. public int? YFXZ { get; set; }
  113. /// <summary>
  114. /// Gets or sets the CPWT
  115. /// </summary>
  116. [FieldBase("产品问题", "", "", false, false, "", 1, 0, "NUMBER")]
  117. public int? CPWT { get; set; }
  118. /// <summary>
  119. /// Gets or sets the BHWT
  120. /// </summary>
  121. [FieldBase("BH问题", "", "", false, false, "", 1, 0, "NUMBER")]
  122. public int? BHWT { get; set; }
  123. /// <summary>
  124. /// Gets or sets the WTBT
  125. /// </summary>
  126. [FieldBase("问题标题", "", "", false, false, "", 200, 0, "VARCHAR2")]
  127. public string WTBT { get; set; }
  128. /// <summary>
  129. /// Gets or sets the CLSJ
  130. /// </summary>
  131. [FieldBase("处理时间", "", "", false, false, "", 7, 0, "DATE")]
  132. public DateTime? CLSJ { get; set; }
  133. /// <summary>
  134. /// Gets or sets the YJSJ
  135. /// </summary>
  136. [FieldBase("预计时间", "", "", false, false, "", 7, 0, "DATE")]
  137. public DateTime? YJSJ { get; set; }
  138. /// <summary>
  139. /// Gets or sets the BBH
  140. /// </summary>
  141. [FieldBase("版本号", "", "", false, false, "", 30, 0, "VARCHAR2")]
  142. public string BBH { get; set; }
  143. /// <summary>
  144. /// Gets or sets the YHID
  145. /// </summary>
  146. [FieldBase("用户ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
  147. public string YHID { get; set; }
  148. }
  149. }