sys-user-ldap.ts 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET 通用权限开发平台
  5. * 让 .NET 开发更简单、更通用、更流行。整合最新技术,模块插件式开发,前后端分离,开箱即用。<br/><u><b><font color='FF0000'> 👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!</font></b></u>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. *
  9. *
  10. * NOTE: This class is auto generated by the swagger code generator program.
  11. * https://github.com/swagger-api/swagger-codegen.git
  12. * Do not edit the class manually.
  13. */
  14. /**
  15. * 系统用户域配置表
  16. * @export
  17. * @interface SysUserLdap
  18. */
  19. export interface SysUserLdap {
  20. /**
  21. * 雪花Id
  22. * @type {number}
  23. * @memberof SysUserLdap
  24. */
  25. id?: number;
  26. /**
  27. * 租户Id
  28. * @type {number}
  29. * @memberof SysUserLdap
  30. */
  31. tenantId?: number | null;
  32. /**
  33. * 用户Id
  34. * @type {number}
  35. * @memberof SysUserLdap
  36. */
  37. userId?: number;
  38. /**
  39. * 域账号 AD域对应sAMAccountName Ldap对应uid
  40. * @type {string}
  41. * @memberof SysUserLdap
  42. */
  43. account: string;
  44. /**
  45. * 域用户名
  46. * @type {string}
  47. * @memberof SysUserLdap
  48. */
  49. userName?: string | null;
  50. /**
  51. * 对应EmployeeId(用于数据导入对照)
  52. * @type {string}
  53. * @memberof SysUserLdap
  54. */
  55. employeeId?: string | null;
  56. /**
  57. * 组织代码
  58. * @type {string}
  59. * @memberof SysUserLdap
  60. */
  61. deptCode?: string | null;
  62. /**
  63. * 最后设置密码时间
  64. * @type {Date}
  65. * @memberof SysUserLdap
  66. */
  67. pwdLastSetTime?: Date | null;
  68. /**
  69. * 邮箱
  70. * @type {string}
  71. * @memberof SysUserLdap
  72. */
  73. mail?: string | null;
  74. /**
  75. * 检查账户是否已过期
  76. * @type {boolean}
  77. * @memberof SysUserLdap
  78. */
  79. accountExpiresFlag?: boolean;
  80. /**
  81. * 密码设置是否永不过期
  82. * @type {boolean}
  83. * @memberof SysUserLdap
  84. */
  85. dontExpiresFlag?: boolean;
  86. /**
  87. * DN
  88. * @type {string}
  89. * @memberof SysUserLdap
  90. */
  91. dn?: string | null;
  92. }