using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { public partial class T_Sys_SeatPermissionConfig { public T_Sys_SeatPermissionConfig() { } #region Model private int _f_id; private int? _f_maxseat; private string _f_passhash; private string _f_saltvalue; private string _f_securitykey; /// /// id,自增 /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 最大坐席数 /// public int? F_MaxSeat { set { _f_maxseat = value; } get { return _f_maxseat; } } /// /// 密文字符串 /// public string F_PassHash { set { _f_passhash = value; } get { return _f_passhash; } } /// /// 盐值Salt /// public string F_SaltValue { set { _f_saltvalue = value; } get { return _f_saltvalue; } } /// /// 安全码Key值 /// public string F_SecurityKey { set { _f_securitykey = value; } get { return _f_securitykey; } } #endregion Model } }