| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- 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_Configure
- {
- public T_Chat_IM_Configure()
- { }
- #region Model
- private int _f_id;
- private string _f_title;
- private string _f_countent_one;
- private string _f_countent_two;
- private string _f_countent_three;
- private int? _f_time_one;
- private int? _f_time_two;
- private int? _f_time_three;
- private int? _f_checked;
- private int? _f_state;
- private int? _f_isdelete;
- /// <summary>
- ///
- /// </summary>
- public int F_Id
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- /// 标题
- /// </summary>
- public string F_Title
- {
- set { _f_title = value; }
- get { return _f_title; }
- }
- /// <summary>
- /// 内容1
- /// </summary>
- public string F_Countent_One
- {
- set { _f_countent_one = value; }
- get { return _f_countent_one; }
- }
- /// <summary>
- /// 内容2
- /// </summary>
- public string F_Countent_Two
- {
- set { _f_countent_two = value; }
- get { return _f_countent_two; }
- }
- /// <summary>
- /// 内容3
- /// </summary>
- public string F_Countent_Three
- {
- set { _f_countent_three = value; }
- get { return _f_countent_three; }
- }
- /// <summary>
- /// 时间1
- /// </summary>
- public int? F_Time_One
- {
- set { _f_time_one = value; }
- get { return _f_time_one; }
- }
- /// <summary>
- /// 时间2
- /// </summary>
- public int? F_Time_Two
- {
- set { _f_time_two = value; }
- get { return _f_time_two; }
- }
- /// <summary>
- /// 时间3
- /// </summary>
- public int? F_Time_Three
- {
- set { _f_time_three = value; }
- get { return _f_time_three; }
- }
- /// <summary>
- /// 是否选中(0未选中,1选中)
- /// </summary>
- public int? F_Checked
- {
- set { _f_checked = value; }
- get { return _f_checked; }
- }
- /// <summary>
- /// 状态(0停用,1开启)
- /// </summary>
- public int? F_State
- {
- set { _f_state = value; }
- get { return _f_state; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? F_IsDelete
- {
- set { _f_isdelete = value; }
- get { return _f_isdelete; }
- }
- #endregion Model
- }
- }
|