namespace PMS.EntityModels.NoticeManager { using QWPlatform.DataIntface.Database; using QWPlatform.Models; using System; /// /// 测试实体类 /// [Table("公告通知")] public class Notice_Model : DataModelBase { //默认不带数据工厂构造 /// /// Initializes a new instance of the class. /// public Notice_Model() { } //带有数据工厂的实例化,可以直接操作数据 /// /// Initializes a new instance of the class. /// /// The factory public Notice_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 BH /// [FieldBase("编号", "", "", true, false, "", 18, 0, "NUMBER")] public long? BH { get; set; } /// /// Gets or sets the BT /// [FieldBase("标题", "", "", true, false, "", 150, 0, "VARCHAR2")] public string BT { get; set; } /// /// Gets or sets the NR /// [FieldBase("内容", "", "", true, false, "", 4000, 0, "CLOB")] public string NR { get; set; } /// /// Gets or sets the FBSJ /// [FieldBase("发布时间", "", "", false, false, "", 7, 0, "DATE")] public DateTime? FBSJ { get; set; } /// /// Gets or sets the SFCX /// [FieldBase("是否撤销", "(0-否;1-是)", "", false, false, "", 1, 0, "NUMBER")] public int? SFCX { get; set; } /// /// Gets or sets the SFSC /// [FieldBase("是否删除", "(0-否;-1是)", "", false, false, "", 1, 0, "NUMBER")] public int? SFSC { get; set; } /// /// Gets or sets the SCSJ /// [FieldBase("删除时间", "", "", false, false, "", 7, 0, "DATE")] public DateTime? SCSJ { get; set; } /// /// Gets or sets the YXJ /// [FieldBase("优先级", "", "", false, false, "", 1, 0, "NUMBER")] public int? YXJ { get; set; } /// /// Gets or sets the TJRID /// [FieldBase("添加人ID", "", "", false, false, "", 36, 0, "VARCHAR2")] public string TJRID { get; set; } /// /// Gets or sets the TJR /// [FieldBase("添加人", "", "", false, false, "", 20, 0, "VARCHAR2")] public string TJR { get; set; } /// /// Gets or sets the TZDX /// [FieldBase("通知对象", "(对应人员性质【,】分割)", "", false, false, "", 20, 0, "VARCHAR2")] public string TZDX { get; set; } /// /// Gets or sets the TZLX /// [FieldBase("通知类型", "(1-公告;2-消息)", "", true, false, "", 1, 0, "NUMBER")] public int? TZLX { get; set; } } }