| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// IVR语音文件表
- /// </summary>
- public class T_Sys_IVRWords
- {
- public T_Sys_IVRWords()
- { }
- #region Model
- private int _fid;
- private string _title;
- private string _groupcode;
- private string _content;
- private int _type;
- private string _wavfile;
- private DateTime? _startdate;
- private DateTime? _enddate;
- private string _remark;
- private int _isstate;
- private string _createby;
- private DateTime? _createtime;
- private int _isdelete;
- /// <summary>
- /// id
- /// </summary>
- public int FID
- {
- set { _fid = value; }
- get { return _fid; }
- }
- /// <summary>
- /// 标题
- /// </summary>
- public string Title
- {
- set { _title = value; }
- get { return _title; }
- }
- /// <summary>
- /// 坐席组编号
- /// </summary>
- public string GroupCode
- {
- set { _groupcode = value; }
- get { return _groupcode; }
- }
- /// <summary>
- /// 内容
- /// </summary>
- public string Content
- {
- set { _content = value; }
- get { return _content; }
- }
- /// <summary>
- /// 类型:1文本,2语音文件
- /// </summary>
- public int Type
- {
- set { _type = value; }
- get { return _type; }
- }
- /// <summary>
- /// 语音文件路径
- /// </summary>
- public string WavFile
- {
- set { _wavfile = value; }
- get { return _wavfile; }
- }
- /// <summary>
- /// 生效时间
- /// </summary>
- public DateTime? StartDate
- {
- set { _startdate = value; }
- get { return _startdate; }
- }
- /// <summary>
- /// 失效时间
- /// </summary>
- public DateTime? EndDate
- {
- set { _enddate = value; }
- get { return _enddate; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- public string Remark
- {
- set { _remark = value; }
- get { return _remark; }
- }
- /// <summary>
- /// 状态:1启动,0不启动
- /// </summary>
- public int IsState
- {
- set { _isstate = value; }
- get { return _isstate; }
- }
- /// <summary>
- /// 添加人
- /// </summary>
- public string CreateBy
- {
- set { _createby = value; }
- get { return _createby; }
- }
- /// <summary>
- /// 添加时间
- /// </summary>
- public DateTime? CreateTime
- {
- set { _createtime = value; }
- get { return _createtime; }
- }
- /// <summary>
- /// 是否删除:0未删除,1已删除
- /// </summary>
- public int IsDelete
- {
- set { _isdelete = value; }
- get { return _isdelete; }
- }
- #endregion Model
- }
- }
|