12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PMS.BusinessModels.Problem
- {
- public class ExportExcel
- {
-
- public long? 编号 { get; set; }
- public string 产品 { get; set; }
- public string 模块 { get; set; }
- public int 问题性质 { get; set; }
- public string 问题标题 { get; set; }
- public string 版本号 { get; set; }
- public string 解决版本 { get; set; }
- public string 登记人 { get; set; }
- public string 受理人 { 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; }
- }
- }
|