using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
///
/// 公告信息表
///
[Serializable]
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_createon = DateTime.Now;
private int? _f_createby;
private int? _f_modifyby;
private DateTime? _f_modifydate = DateTime.Now;
private string _f_userid;
private string _f_roleid;
private int? _f_iscus;
private int? _f_isdel;
///
/// 公告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_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; }
}
///
/// 权限用户Id
///
public string F_UserId
{
set { _f_userid = value; }
get { return _f_userid; }
}
///
/// 权限角色Id
///
public string F_RoleId
{
set { _f_roleid = value; }
get { return _f_roleid; }
}
///
/// 是否给客户发送通知 0否 1是 默认0
///
public int? F_isCus
{
get
{
return _f_iscus;
}
set
{
_f_iscus = value;
}
}
public int? F_isDel
{
get
{
return _f_isdel;
}
set
{
_f_isdel = value;
}
}
#endregion Model
}
}