| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// 快速回复 内容 表
- /// </summary>
- [Serializable]
- public partial class T_Chat_IM_ReplyList
- {
- public T_Chat_IM_ReplyList()
- { }
- #region Model
- private int _f_id;
- private int? _f_classid;
- private string _f_replycontent;
- private int? _f_usenum = 0;
- private int? _f_collectionnum = 0;
- private string _f_createby;
- private DateTime? _f_createtime;
- private int? _f_isdelete;
- private string _f_deleteby;
- private DateTime? _f_deletetime;
- /// <summary>
- /// id
- /// </summary>
- public int F_Id
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- /// 分类
- /// </summary>
- public int? F_ClassId
- {
- set { _f_classid = value; }
- get { return _f_classid; }
- }
- /// <summary>
- /// 回复内容
- /// </summary>
- public string F_ReplyContent
- {
- set { _f_replycontent = value; }
- get { return _f_replycontent; }
- }
- /// <summary>
- /// 使用数
- /// </summary>
- public int? F_UseNum
- {
- set { _f_usenum = value; }
- get { return _f_usenum; }
- }
- /// <summary>
- /// 收藏数
- /// </summary>
- public int? F_CollectionNum
- {
- set { _f_collectionnum = value; }
- get { return _f_collectionnum; }
- }
- /// <summary>
- /// 添加人
- /// </summary>
- public string F_CreateBy
- {
- set { _f_createby = value; }
- get { return _f_createby; }
- }
- /// <summary>
- /// 添加时间
- /// </summary>
- public DateTime? F_CreateTime
- {
- set { _f_createtime = value; }
- get { return _f_createtime; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_IsDelete
- {
- set { _f_isdelete = value; }
- get { return _f_isdelete; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_DeleteBy
- {
- set { _f_deleteby = value; }
- get { return _f_deleteby; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? F_DeleteTime
- {
- set { _f_deletetime = value; }
- get { return _f_deletetime; }
- }
- #endregion Model
- }
- }
|