using System;
using System.Collections.Generic;
using System.Text;
namespace System.Model
{
[Serializable]
public partial class T_Sys_SeatPermissionConfig
{
///
/// id,自增
///
public int F_Id { get; set; }
///
/// 最大坐席数
///
public int? F_MaxSeat { get; set; }
///
/// 密文字符串
///
public string F_PassHash { get; set; }
///
/// 盐值Salt
///
public string F_SaltValue { get; set; }
///
/// 安全码Key值
///
public string F_SecurityKey { get; set; }
}
}