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