using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// IVR语音文件表 /// [Serializable] public partial class T_Sys_IVRWords { public T_Sys_IVRWords() { } #region Model private int _f_id; private string _f_title; private string _f_content; private int? _f_type; private string _f_wavoldname; private string _f_wavnewname; private string _f_wavpath; private DateTime? _f_startdate = DateTime.Now; private DateTime? _f_enddate = DateTime.Now; private string _f_remark; private int? _f_isstate = 0; private DateTime? _f_createtime = DateTime.Now; private string _f_createuser; private int? _f_isdel = 0; /// /// 自增ID /// public int F_ID { set { _f_id = value; } get { return _f_id; } } /// /// 标题 /// public string F_Title { set { _f_title = value; } get { return _f_title; } } /// /// 内容 /// public string F_Content { set { _f_content = value; } get { return _f_content; } } /// /// 类型:1文本,2语音文件 /// public int? F_Type { set { _f_type = value; } get { return _f_type; } } /// /// 语音文件原名 /// public string F_WavOldName { set { _f_wavoldname = value; } get { return _f_wavoldname; } } /// /// 语音文件新名 /// public string F_WavNewName { set { _f_wavnewname = value; } get { return _f_wavnewname; } } /// /// 语音文件路径 /// public string F_WavPath { set { _f_wavpath = value; } get { return _f_wavpath; } } /// /// 生效时间 /// 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 string F_Remark { set { _f_remark = value; } get { return _f_remark; } } /// /// 状态:1启动,0不启动 /// public int? F_IsState { set { _f_isstate = value; } get { return _f_isstate; } } /// /// 添加时间 /// public DateTime? F_CreateTime { set { _f_createtime = value; } get { return _f_createtime; } } /// /// 添加人 /// public string F_CreateUser { set { _f_createuser = value; } get { return _f_createuser; } } /// /// 是否删除:0未删除,1已删除 /// public int? F_IsDel { set { _f_isdel = value; } get { return _f_isdel; } } #endregion Model } }