123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- 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
- {
- /// <summary>
- /// 测试实体类
- /// </summary>
- [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; }
- }
- }
|