AppPush_Model.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*以下代码由原型工具自动生成
  2. *如有需要请自行修改
  3. *
  4. */
  5. namespace PMS.EntityModels.NoticeManager
  6. {
  7. using QWPlatform.DataIntface.Database;
  8. using QWPlatform.Models;
  9. using System;
  10. /// <summary>
  11. /// 测试实体类
  12. /// </summary>
  13. [Table("APP公告推送")]
  14. public class AppPush_Model : DataModelBase
  15. {
  16. //默认不带数据工厂构造
  17. /// <summary>
  18. /// Initializes a new instance of the <see cref="AppPush_Model"/> class.
  19. /// </summary>
  20. public AppPush_Model()
  21. {
  22. }
  23. //带有数据工厂的实例化,可以直接操作数据
  24. /// <summary>
  25. /// Initializes a new instance of the <see cref="AppPush_Model"/> class.
  26. /// </summary>
  27. /// <param name="factory">The factory<see cref="DataFactory"/></param>
  28. public AppPush_Model(DataFactory factory)
  29. : base(factory)
  30. {
  31. }
  32. /// <summary>
  33. /// Gets or sets the ID
  34. /// </summary>
  35. [FieldBase("ID", "", "", true, false, "", 36, 0, "VARCHAR2")]
  36. public string ID { get; set; }
  37. /// <summary>
  38. /// Gets or sets the BT
  39. /// </summary>
  40. [FieldBase("标题", "", "", false, false, "", 100, 0, "VARCHAR2")]
  41. public string BT { get; set; }
  42. /// <summary>
  43. /// Gets or sets the MS
  44. /// </summary>
  45. [FieldBase("描述", "", "", false, false, "", 4000, 0, "CLOB")]
  46. public string MS { get; set; }
  47. /// <summary>
  48. /// Gets or sets the TPID
  49. /// </summary>
  50. [FieldBase("图片ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
  51. public string TPID { get; set; }
  52. /// <summary>
  53. /// Gets or sets the TJRID
  54. /// </summary>
  55. [FieldBase("添加人ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
  56. public string TJRID { get; set; }
  57. /// <summary>
  58. /// Gets or sets the TJSJ
  59. /// </summary>
  60. [FieldBase("添加时间", "", "", false, false, "", 7, 0, "DATE")]
  61. public DateTime? TJSJ { get; set; }
  62. /// <summary>
  63. /// Gets or sets the SFQY
  64. /// </summary>
  65. [FieldBase("是否启用", "(0:停用,1:启用)", "", false, false, "", 1, 0, "NUMBER")]
  66. public int? SFQY { get; set; }
  67. }
  68. }