123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- namespace PMS.EntityModels.MoblieProblemRegist
- {
- using QWPlatform.DataIntface.Database;
- using QWPlatform.Models;
- using System;
- /// <summary>
- /// 测试实体类
- /// </summary>
- [Table("产品问题过程")]
- public class ProductProblemProcessModel : DataModelBase
- {
- //默认不带数据工厂构造
- /// <summary>
- /// Initializes a new instance of the <see cref="ProductProblemProcessModel"/> class.
- /// </summary>
- public ProductProblemProcessModel()
- {
- }
- //带有数据工厂的实例化,可以直接操作数据
- /// <summary>
- /// Initializes a new instance of the <see cref="ProductProblemProcessModel"/> class.
- /// </summary>
- /// <param name="factory">The factory<see cref="DataFactory"/></param>
- public ProductProblemProcessModel(DataFactory factory)
- : base(factory)
- {
- }
- /// <summary>
- /// Gets or sets the ID
- /// </summary>
- [FieldBase("ID", "", "", false, false, "", 18, 0, "NUMBER")]
- public long? ID { get; set; }
- /// <summary>
- /// Gets or sets the XZ
- /// </summary>
- [FieldBase("性质", "(1-流转环节;2-过程沟通(如和项目人员的沟通记录);3-关键信息调整(如更改解决版本、更改要求时间,相当于日志记录);)", "", false, false, "", 1, 0, "NUMBER")]
- public int? XZ { get; set; }
- /// <summary>
- /// Gets or sets the WTID
- /// </summary>
- [FieldBase("问题ID", "", "", false, false, "", 18, 0, "NUMBER")]
- public long? WTID { get; set; }
- /// <summary>
- /// Gets or sets the LCID
- /// </summary>
- [FieldBase("流程ID", "", "", false, false, "", 18, 0, "NUMBER")]
- public long? LCID { get; set; }
- /// <summary>
- /// Gets or sets the ZT
- /// </summary>
- [FieldBase("状态", "(1-正常;2-被回退 仅性质=1时使用)", "", false, false, "", 1, 0, "NUMBER")]
- public int? ZT { get; set; }
- /// <summary>
- /// Gets or sets the GZL
- /// </summary>
- [FieldBase("工作量", "(指定环节的工作量(如:验证、研发修改),由操作人填写;)", "", false, false, "", 5, 0, "NUMBER")]
- public int? GZL { get; set; }
- /// <summary>
- /// Gets or sets the CW
- /// </summary>
- [FieldBase("单位", "(工作量单位;天;小时)", "", false, false, "", 4, 0, "VARCHAR2")]
- public string CW { get; set; }
- /// <summary>
- /// Gets or sets the HS
- /// </summary>
- [FieldBase("耗时", "(自动计算从上环节至当前环节的时间天数;如果回退后再次流转则本次需从上一环节重新计算)", "", false, false, "", 5, 0, "NUMBER")]
- public int? HS { get; set; }
- /// <summary>
- /// Gets or sets the JLSJ
- /// </summary>
- [FieldBase("记录时间", "", "", false, false, "", 7, 0, "DATE")]
- public DateTime? JLSJ { get; set; }
- /// <summary>
- /// Gets or sets the JLRID
- /// </summary>
- [FieldBase("记录人ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string JLRID { get; set; }
- /// <summary>
- /// Gets or sets the JLR
- /// </summary>
- [FieldBase("记录人", "", "", false, false, "", 20, 0, "VARCHAR2")]
- public string JLR { get; set; }
- /// <summary>
- /// Gets or sets the MS
- /// </summary>
- [FieldBase("描述", "", "", false, false, "", 500, 0, "VARCHAR2")]
- public string MS { get; set; }
- /// <summary>
- /// Gets or sets the FJ
- /// </summary>
- [FieldBase("附件", "", "", false, false, "", 4000, 0, "BLOB")]
- public byte[] FJ { get; set; }
- }
- }
|