using QWPlatform.DataIntface.Database; using QWPlatform.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PMS.EntityModels.Problem { /// /// 测试实体类 /// [Table("问题记录")] public class 问题记录 : DataModelBase { public string ID { get; set; } public long? 编号 { get; set; } public string 渠道ID { get; set; } public string 项目ID { get; set; } public string 产品ID { get; set; } public string 模块ID { get; set; } public string 版本号 { get; set; } public string 来源代码 { get; set; } public string 登记人 { get; set; } public string 登记人ID { get; set; } public DateTime? 登记日期 { get; set; } public string 紧急代码 { get; set; } public DateTime? 要求时间 { get; set; } public string 紧急描述 { get; set; } public string 问题标题 { get; set; } public string 问题描述 { get; set; } public string 反馈人 { get; set; } public int? 问题性质 { get; set; } public int? 是否终止 { get; set; } public string 终止说明 { get; set; } public DateTime? 终止日期 { get; set; } public int? 是否回退 { get; set; } public string 回退说明 { get; set; } public int? 是否解决 { get; set; } public string 解决方案 { get; set; } public string 解决版本 { get; set; } public string BH版本 { get; set; } public string BH编号 { get; set; } public string 关键字 { get; set; } public int? 常见问题 { get; set; } public string 修改说明 { get; set; } public string 测试说明 { get; set; } public string 升级说明 { get; set; } public int? 是否发布 { get; set; } public int? 需要培训 { get; set; } public int? 项目处理 { get; set; } public int? 技术支持 { get; set; } public int? 研发协助 { get; set; } public int? 问题类型 { get; set; } public int? 流程ID { get; set; } public int? 是否受理 { get; set; } public string 受理人 { get; set; } public string 受理人ID { get; set; } public DateTime? 受理时间 { get; set; } public string 指派人 { get; set; } public string 指派人ID { get; set; } public DateTime? 指派时间 { get; set; } public string 机构ID { get; set; } public int? 环节ID { get; set; } public int? 是否删除 { get; set; } public int? 是否验证 { get; set; } public string 分类ID { get; set; } public string 验证人ID { get; set; } public int? 是否评价 { get; set; } public DateTime? 反馈日期 { get; set; } public int? 内部产品问题 { get; set; } public string 重复问题ID { get; set; } public string 选择重复ID { get; set; } public int? 关联数量 { get; set; } public string 关联ID { get; set; } } }