| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- 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_ReplyClass
- {
- public T_Chat_IM_ReplyClass()
- { }
- #region Model
- private int _f_id;
- private string _f_name;
- private int? _f_parentid;
- 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 string F_Name
- {
- set { _f_name = value; }
- get { return _f_name; }
- }
- /// <summary>
- /// 父id
- /// </summary>
- public int? F_ParentId
- {
- set { _f_parentid = value; }
- get { return _f_parentid; }
- }
- /// <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
- }
- }
|