using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
///
/// 公告信息表
///
public partial class T_Msg_NoticeInfo
{
public T_Msg_NoticeInfo()
{ }
#region Model
private int _f_noticeid;
private string _f_title;
private string _f_content;
private DateTime? _f_startdate;
private DateTime? _f_enddate;
private DateTime? _f_createon = DateTime.Now;
private int? _f_createby;
private int? _f_modifyby;
private DateTime? _f_modifydate = DateTime.Now;
///
/// 公告Id
///
public int F_NoticeId
{
set { _f_noticeid = value; }
get { return _f_noticeid; }
}
///
/// 公告标题
///
public string F_Title
{
set { _f_title = value; }
get { return _f_title; }
}
///
/// 公告内容
///
public string F_Content
{
set { _f_content = value; }
get { return _f_content; }
}
///
/// 有效期开始时间
///
public DateTime? F_StartDate
{
set { _f_startdate = value; }
get { return _f_startdate; }
}
///
/// 有效期结束时间
///
public DateTime? F_EndDate
{
set { _f_enddate = value; }
get { return _f_enddate; }
}
///
/// 添加时间
///
public DateTime? F_CreateOn
{
set { _f_createon = value; }
get { return _f_createon; }
}
///
/// 添加人Id
///
public int? F_CreateBy
{
set { _f_createby = value; }
get { return _f_createby; }
}
///
/// 修改人Id
///
public int? F_ModifyBy
{
set { _f_modifyby = value; }
get { return _f_modifyby; }
}
///
/// 修改时间
///
public DateTime? F_ModifyDate
{
set { _f_modifydate = value; }
get { return _f_modifydate; }
}
#endregion Model
}
}