ProductFunModel.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. namespace PMS.EntityModels.Product
  2. {
  3. using QWPlatform.DataIntface.Database;
  4. using QWPlatform.Models;
  5. /// <summary>
  6. /// 测试实体类
  7. /// </summary>
  8. [Table("产品模块功能")]
  9. public class ProductFunModel : DataModelBase
  10. {
  11. //默认不带数据工厂构造
  12. /// <summary>
  13. /// Initializes a new instance of the <see cref="ProductFunModel"/> class.
  14. /// </summary>
  15. public ProductFunModel()
  16. {
  17. }
  18. //带有数据工厂的实例化,可以直接操作数据
  19. /// <summary>
  20. /// Initializes a new instance of the <see cref="ProductFunModel"/> class.
  21. /// </summary>
  22. /// <param name="factory">The factory<see cref="DataFactory"/></param>
  23. public ProductFunModel(DataFactory factory)
  24. : base(factory)
  25. {
  26. }
  27. /// <summary>
  28. /// Gets or sets the ID
  29. /// </summary>
  30. [FieldBase("ID", "", "", true, false, "", 36, 0, "VARCHAR2")]
  31. public string ID { get; set; }
  32. /// <summary>
  33. /// Gets or sets the CPID
  34. /// </summary>
  35. [FieldBase("产品ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
  36. public string CPID { get; set; }
  37. /// <summary>
  38. /// Gets or sets the SJID
  39. /// </summary>
  40. [FieldBase("上级ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
  41. public string SJID { get; set; }
  42. /// <summary>
  43. /// Gets or sets the LX
  44. /// </summary>
  45. [FieldBase("类型", "(0-产品模块;1-产品功能)", "", false, false, "", 1, 0, "NUMBER")]
  46. public int? LX { get; set; }
  47. /// <summary>
  48. /// Gets or sets the BM
  49. /// </summary>
  50. [FieldBase("编码", "", "", false, false, "", 20, 0, "VARCHAR2")]
  51. public string BM { get; set; }
  52. /// <summary>
  53. /// Gets or sets the MC
  54. /// </summary>
  55. [FieldBase("名称", "", "", false, false, "", 50, 0, "VARCHAR2")]
  56. public string MC { get; set; }
  57. /// <summary>
  58. /// Gets or sets the ZT
  59. /// </summary>
  60. [FieldBase("状态", "", "", false, false, "", 2, 0, "VARCHAR2")]
  61. public string ZT { get; set; }
  62. /// <summary>
  63. /// Gets or sets the KFFS
  64. /// </summary>
  65. [FieldBase("开发方式", "", "", false, false, "", 1, 0, "VARCHAR2")]
  66. public string KFFS { get; set; }
  67. /// <summary>
  68. /// Gets or sets the YFRID
  69. /// </summary>
  70. [FieldBase("研发人ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
  71. public string YFRID { get; set; }
  72. /// <summary>
  73. /// Gets or sets the YFR
  74. /// </summary>
  75. [FieldBase("研发人", "", "", false, false, "", 20, 0, "VARCHAR2")]
  76. public string YFR { get; set; }
  77. /// <summary>
  78. /// Gets or sets the CSRID
  79. /// </summary>
  80. [FieldBase("测试人ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
  81. public string CSRID { get; set; }
  82. /// <summary>
  83. /// Gets or sets the CSR
  84. /// </summary>
  85. [FieldBase("测试人", "", "", false, false, "", 20, 0, "VARCHAR2")]
  86. public string CSR { get; set; }
  87. /// <summary>
  88. /// Gets or sets the SM
  89. /// </summary>
  90. [FieldBase("说明", "", "", false, false, "", 200, 0, "VARCHAR2")]
  91. public string SM { get; set; }
  92. /// <summary>
  93. /// Gets or sets the CSRIDNEW
  94. /// </summary>
  95. [FieldBase("测试人IDNEW", "", "", false, false, "", 4000, 0, "CLOB")]
  96. public string CSRIDNEW { get; set; }
  97. /// <summary>
  98. /// Gets or sets the CSRNEW
  99. /// </summary>
  100. [FieldBase("测试人NEW", "", "", false, false, "", 4000, 0, "CLOB")]
  101. public string CSRNEW { get; set; }
  102. }
  103. }