123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- namespace PMS.EntityModels.MoblieProblemRegist
- {
- using QWPlatform.DataIntface.Database;
- using QWPlatform.Models;
- using System;
- /// <summary>
- /// 测试实体类
- /// </summary>
- [Table("项目问题记录")]
- public class MoblieProblemModel : DataModelBase
- {
- //默认不带数据工厂构造
- /// <summary>
- /// Initializes a new instance of the <see cref="MoblieProblemModel"/> class.
- /// </summary>
- public MoblieProblemModel()
- {
- }
- //带有数据工厂的实例化,可以直接操作数据
- /// <summary>
- /// Initializes a new instance of the <see cref="MoblieProblemModel"/> class.
- /// </summary>
- /// <param name="factory">The factory<see cref="DataFactory"/></param>
- public MoblieProblemModel(DataFactory factory)
- : base(factory)
- {
- }
- /// <summary>
- /// Gets or sets the ID
- /// </summary>
- [FieldBase("ID", "", "", true, false, "", 36, 0, "VARCHAR2")]
- public string ID { get; set; }
- /// <summary>
- /// Gets or sets the BH
- /// </summary>
- [FieldBase("编号", "", "", false, false, "", 10, 0, "VARCHAR2")]
- public string BH { get; set; }
- /// <summary>
- /// Gets or sets the XMID
- /// </summary>
- [FieldBase("项目ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string XMID { get; set; }
- /// <summary>
- /// Gets or sets the ZDID
- /// </summary>
- [FieldBase("站点ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string ZDID { get; set; }
- /// <summary>
- /// Gets or sets the CPID
- /// </summary>
- [FieldBase("产品ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string CPID { get; set; }
- /// <summary>
- /// Gets or sets the KSM
- /// </summary>
- [FieldBase("科室名", "", "", false, false, "", 10, 0, "VARCHAR2")]
- public string KSM { get; set; }
- /// <summary>
- /// Gets or sets the YHXM
- /// </summary>
- [FieldBase("用户姓名", "", "", false, false, "", 50, 0, "VARCHAR2")]
- public string YHXM { get; set; }
- /// <summary>
- /// Gets or sets the LY
- /// </summary>
- [FieldBase("来源", "", "", false, false, "", 1, 0, "NUMBER")]
- public int? LY { get; set; }
- /// <summary>
- /// Gets or sets the WTMS
- /// </summary>
- [FieldBase("问题描述", "", "", false, false, "", 4000, 0, "CLOB")]
- public string WTMS { get; set; }
- /// <summary>
- /// Gets or sets the DJSJ
- /// </summary>
- [FieldBase("登记时间", "", "", false, false, "", 7, 0, "DATE")]
- public DateTime? DJSJ { get; set; }
- /// <summary>
- /// Gets or sets the DJRID
- /// </summary>
- [FieldBase("登记人ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string DJRID { get; set; }
- /// <summary>
- /// Gets or sets the DQCLR
- /// </summary>
- [FieldBase("当前处理人", "", "", false, false, "", 30, 0, "VARCHAR2")]
- public string DQCLR { get; set; }
- /// <summary>
- /// Gets or sets the CLSM
- /// </summary>
- [FieldBase("处理说明", "", "", false, false, "", 500, 0, "VARCHAR2")]
- public string CLSM { get; set; }
- /// <summary>
- /// Gets or sets the ZT
- /// </summary>
- [FieldBase("状态", "", "", false, false, "", 2, 0, "NUMBER")]
- public int? ZT { get; set; }
- /// <summary>
- /// Gets or sets the XMCL
- /// </summary>
- [FieldBase("项目处理", "", "", false, false, "", 1, 0, "NUMBER")]
- public int? XMCL { get; set; }
- /// <summary>
- /// Gets or sets the JSZC
- /// </summary>
- [FieldBase("技术支持", "", "", false, false, "", 1, 0, "NUMBER")]
- public int? JSZC { get; set; }
- /// <summary>
- /// Gets or sets the YFXZ
- /// </summary>
- [FieldBase("研发协助", "", "", false, false, "", 1, 0, "NUMBER")]
- public int? YFXZ { get; set; }
- /// <summary>
- /// Gets or sets the CPWT
- /// </summary>
- [FieldBase("产品问题", "", "", false, false, "", 1, 0, "NUMBER")]
- public int? CPWT { get; set; }
- /// <summary>
- /// Gets or sets the BHWT
- /// </summary>
- [FieldBase("BH问题", "", "", false, false, "", 1, 0, "NUMBER")]
- public int? BHWT { get; set; }
- /// <summary>
- /// Gets or sets the WTBT
- /// </summary>
- [FieldBase("问题标题", "", "", false, false, "", 200, 0, "VARCHAR2")]
- public string WTBT { get; set; }
- /// <summary>
- /// Gets or sets the CLSJ
- /// </summary>
- [FieldBase("处理时间", "", "", false, false, "", 7, 0, "DATE")]
- public DateTime? CLSJ { get; set; }
- /// <summary>
- /// Gets or sets the YJSJ
- /// </summary>
- [FieldBase("预计时间", "", "", false, false, "", 7, 0, "DATE")]
- public DateTime? YJSJ { get; set; }
- /// <summary>
- /// Gets or sets the BBH
- /// </summary>
- [FieldBase("版本号", "", "", false, false, "", 30, 0, "VARCHAR2")]
- public string BBH { get; set; }
- /// <summary>
- /// Gets or sets the YHID
- /// </summary>
- [FieldBase("用户ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string YHID { get; set; }
- }
- }
|