| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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;
- /// <summary>
- /// id,自增
- /// </summary>
- public int F_Id
- {
- set { _f_id = value; }
- get { return _f_id; }
- }
- /// <summary>
- /// 最大坐席数
- /// </summary>
- public int? F_MaxSeat
- {
- set { _f_maxseat = value; }
- get { return _f_maxseat; }
- }
- /// <summary>
- /// 密文字符串
- /// </summary>
- public string F_PassHash
- {
- set { _f_passhash = value; }
- get { return _f_passhash; }
- }
- /// <summary>
- /// 盐值Salt
- /// </summary>
- public string F_SaltValue
- {
- set { _f_saltvalue = value; }
- get { return _f_saltvalue; }
- }
- /// <summary>
- /// 安全码Key值
- /// </summary>
- public string F_SecurityKey
- {
- set { _f_securitykey = value; }
- get { return _f_securitykey; }
- }
- #endregion Model
- }
- }
|