123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*以下代码由原型工具自动生成
- *如有需要请自行修改
- *
- */
- namespace PMS.EntityModels.NoticeManager
- {
- using QWPlatform.DataIntface.Database;
- using QWPlatform.Models;
- using System;
- /// <summary>
- /// 测试实体类
- /// </summary>
- [Table("APP公告推送")]
- public class AppPush_Model : DataModelBase
- {
- //默认不带数据工厂构造
- /// <summary>
- /// Initializes a new instance of the <see cref="AppPush_Model"/> class.
- /// </summary>
- public AppPush_Model()
- {
- }
- //带有数据工厂的实例化,可以直接操作数据
- /// <summary>
- /// Initializes a new instance of the <see cref="AppPush_Model"/> class.
- /// </summary>
- /// <param name="factory">The factory<see cref="DataFactory"/></param>
- public AppPush_Model(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 BT
- /// </summary>
- [FieldBase("标题", "", "", false, false, "", 100, 0, "VARCHAR2")]
- public string BT { get; set; }
- /// <summary>
- /// Gets or sets the MS
- /// </summary>
- [FieldBase("描述", "", "", false, false, "", 4000, 0, "CLOB")]
- public string MS { get; set; }
- /// <summary>
- /// Gets or sets the TPID
- /// </summary>
- [FieldBase("图片ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string TPID { get; set; }
- /// <summary>
- /// Gets or sets the TJRID
- /// </summary>
- [FieldBase("添加人ID", "", "", false, false, "", 36, 0, "VARCHAR2")]
- public string TJRID { get; set; }
- /// <summary>
- /// Gets or sets the TJSJ
- /// </summary>
- [FieldBase("添加时间", "", "", false, false, "", 7, 0, "DATE")]
- public DateTime? TJSJ { get; set; }
- /// <summary>
- /// Gets or sets the SFQY
- /// </summary>
- [FieldBase("是否启用", "(0:停用,1:启用)", "", false, false, "", 1, 0, "NUMBER")]
- public int? SFQY { get; set; }
- }
- }
|