123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- namespace PMS.EntityModels.Product
- {
- using QWPlatform.DataIntface.Database;
- using QWPlatform.Models;
- /// <summary>
- /// 测试实体类
- /// </summary>
- [Table("产品模块功能")]
- public class ProductFunModel : DataModelBase
- {
- //默认不带数据工厂构造
- /// <summary>
- /// Initializes a new instance of the <see cref="ProductFunModel"/> class.
- /// </summary>
- public ProductFunModel()
- {
- }
- //带有数据工厂的实例化,可以直接操作数据
- /// <summary>
- /// Initializes a new instance of the <see cref="ProductFunModel"/> class.
- /// </summary>
- /// <param name="factory">The factory<see cref="DataFactory"/></param>
- public ProductFunModel(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 CPID
- /// </summary>
- [FieldBase("产品ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string CPID { get; set; }
- /// <summary>
- /// Gets or sets the SJID
- /// </summary>
- [FieldBase("上级ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string SJID { get; set; }
- /// <summary>
- /// Gets or sets the LX
- /// </summary>
- [FieldBase("类型", "(0-产品模块;1-产品功能)", "", false, false, "", 1, 0, "NUMBER")]
- public int? LX { get; set; }
- /// <summary>
- /// Gets or sets the BM
- /// </summary>
- [FieldBase("编码", "", "", false, false, "", 20, 0, "VARCHAR2")]
- public string BM { get; set; }
- /// <summary>
- /// Gets or sets the MC
- /// </summary>
- [FieldBase("名称", "", "", false, false, "", 50, 0, "VARCHAR2")]
- public string MC { get; set; }
- /// <summary>
- /// Gets or sets the ZT
- /// </summary>
- [FieldBase("状态", "", "", false, false, "", 2, 0, "VARCHAR2")]
- public string ZT { get; set; }
- /// <summary>
- /// Gets or sets the KFFS
- /// </summary>
- [FieldBase("开发方式", "", "", false, false, "", 1, 0, "VARCHAR2")]
- public string KFFS { get; set; }
- /// <summary>
- /// Gets or sets the YFRID
- /// </summary>
- [FieldBase("研发人ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string YFRID { get; set; }
- /// <summary>
- /// Gets or sets the YFR
- /// </summary>
- [FieldBase("研发人", "", "", false, false, "", 20, 0, "VARCHAR2")]
- public string YFR { get; set; }
- /// <summary>
- /// Gets or sets the CSRID
- /// </summary>
- [FieldBase("测试人ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string CSRID { get; set; }
- /// <summary>
- /// Gets or sets the CSR
- /// </summary>
- [FieldBase("测试人", "", "", false, false, "", 20, 0, "VARCHAR2")]
- public string CSR { get; set; }
- /// <summary>
- /// Gets or sets the SM
- /// </summary>
- [FieldBase("说明", "", "", false, false, "", 200, 0, "VARCHAR2")]
- public string SM { get; set; }
- /// <summary>
- /// Gets or sets the CSRIDNEW
- /// </summary>
- [FieldBase("测试人IDNEW", "", "", false, false, "", 4000, 0, "CLOB")]
- public string CSRIDNEW { get; set; }
- /// <summary>
- /// Gets or sets the CSRNEW
- /// </summary>
- [FieldBase("测试人NEW", "", "", false, false, "", 4000, 0, "CLOB")]
- public string CSRNEW { get; set; }
- }
- }
|