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