説明なし

T_Sys_SeatPermissionConfig.cs 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. public partial class T_Sys_SeatPermissionConfig
  9. {
  10. public T_Sys_SeatPermissionConfig()
  11. { }
  12. #region Model
  13. private int _f_id;
  14. private int? _f_maxseat;
  15. private string _f_passhash;
  16. private string _f_saltvalue;
  17. private string _f_securitykey;
  18. /// <summary>
  19. /// id,自增
  20. /// </summary>
  21. public int F_Id
  22. {
  23. set { _f_id = value; }
  24. get { return _f_id; }
  25. }
  26. /// <summary>
  27. /// 最大坐席数
  28. /// </summary>
  29. public int? F_MaxSeat
  30. {
  31. set { _f_maxseat = value; }
  32. get { return _f_maxseat; }
  33. }
  34. /// <summary>
  35. /// 密文字符串
  36. /// </summary>
  37. public string F_PassHash
  38. {
  39. set { _f_passhash = value; }
  40. get { return _f_passhash; }
  41. }
  42. /// <summary>
  43. /// 盐值Salt
  44. /// </summary>
  45. public string F_SaltValue
  46. {
  47. set { _f_saltvalue = value; }
  48. get { return _f_saltvalue; }
  49. }
  50. /// <summary>
  51. /// 安全码Key值
  52. /// </summary>
  53. public string F_SecurityKey
  54. {
  55. set { _f_securitykey = value; }
  56. get { return _f_securitykey; }
  57. }
  58. #endregion Model
  59. }
  60. }