问题记录.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. using QWPlatform.DataIntface.Database;
  2. using QWPlatform.Models;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace PMS.EntityModels.Problem
  9. {
  10. /// <summary>
  11. /// 测试实体类
  12. /// </summary>
  13. [Table("问题记录")]
  14. public class 问题记录 : DataModelBase
  15. {
  16. public string ID { get; set; }
  17. public long? 编号 { get; set; }
  18. public string 渠道ID { get; set; }
  19. public string 项目ID { get; set; }
  20. public string 产品ID { get; set; }
  21. public string 模块ID { get; set; }
  22. public string 版本号 { get; set; }
  23. public string 来源代码 { get; set; }
  24. public string 登记人 { get; set; }
  25. public string 登记人ID { get; set; }
  26. public DateTime? 登记日期 { get; set; }
  27. public string 紧急代码 { get; set; }
  28. public DateTime? 要求时间 { get; set; }
  29. public string 紧急描述 { get; set; }
  30. public string 问题标题 { get; set; }
  31. public string 问题描述 { get; set; }
  32. public string 反馈人 { get; set; }
  33. public int? 问题性质 { get; set; }
  34. public int? 是否终止 { get; set; }
  35. public string 终止说明 { get; set; }
  36. public DateTime? 终止日期 { get; set; }
  37. public int? 是否回退 { get; set; }
  38. public string 回退说明 { get; set; }
  39. public int? 是否解决 { get; set; }
  40. public string 解决方案 { get; set; }
  41. public string 解决版本 { get; set; }
  42. public string BH版本 { get; set; }
  43. public string BH编号 { get; set; }
  44. public string 关键字 { get; set; }
  45. public int? 常见问题 { get; set; }
  46. public string 修改说明 { get; set; }
  47. public string 测试说明 { get; set; }
  48. public string 升级说明 { get; set; }
  49. public int? 是否发布 { get; set; }
  50. public int? 需要培训 { get; set; }
  51. public int? 项目处理 { get; set; }
  52. public int? 技术支持 { get; set; }
  53. public int? 研发协助 { get; set; }
  54. public int? 问题类型 { get; set; }
  55. public int? 流程ID { get; set; }
  56. public int? 是否受理 { get; set; }
  57. public string 受理人 { get; set; }
  58. public string 受理人ID { get; set; }
  59. public DateTime? 受理时间 { get; set; }
  60. public string 指派人 { get; set; }
  61. public string 指派人ID { get; set; }
  62. public DateTime? 指派时间 { get; set; }
  63. public string 机构ID { get; set; }
  64. public int? 环节ID { get; set; }
  65. public int? 是否删除 { get; set; }
  66. public int? 是否验证 { get; set; }
  67. public string 分类ID { get; set; }
  68. public string 验证人ID { get; set; }
  69. public int? 是否评价 { get; set; }
  70. public DateTime? 反馈日期 { get; set; }
  71. public int? 内部产品问题 { get; set; }
  72. public string 重复问题ID { get; set; }
  73. public string 选择重复ID { get; set; }
  74. public int? 关联数量 { get; set; }
  75. public string 关联ID { get; set; }
  76. }
  77. }