login-user-output.ts 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. import { AccountTypeEnum } from './account-type-enum';
  15. /**
  16. * 用户登录信息
  17. *
  18. * @export
  19. * @interface LoginUserOutput
  20. */
  21. export interface LoginUserOutput {
  22. /**
  23. * 用户id
  24. *
  25. * @type {number}
  26. * @memberof LoginUserOutput
  27. */
  28. id?: number;
  29. /**
  30. * 账号名称
  31. *
  32. * @type {string}
  33. * @memberof LoginUserOutput
  34. */
  35. account?: string | null;
  36. /**
  37. * 真实姓名
  38. *
  39. * @type {string}
  40. * @memberof LoginUserOutput
  41. */
  42. realName?: string | null;
  43. /**
  44. * 电话
  45. *
  46. * @type {string}
  47. * @memberof LoginUserOutput
  48. */
  49. phone?: string | null;
  50. /**
  51. * 身份证
  52. *
  53. * @type {string}
  54. * @memberof LoginUserOutput
  55. */
  56. idCardNum?: string | null;
  57. /**
  58. * 邮箱
  59. *
  60. * @type {string}
  61. * @memberof LoginUserOutput
  62. */
  63. email?: string | null;
  64. /**
  65. * @type {AccountTypeEnum}
  66. * @memberof LoginUserOutput
  67. */
  68. accountType?: AccountTypeEnum;
  69. /**
  70. * 头像
  71. *
  72. * @type {string}
  73. * @memberof LoginUserOutput
  74. */
  75. avatar?: string | null;
  76. /**
  77. * 个人简介
  78. *
  79. * @type {string}
  80. * @memberof LoginUserOutput
  81. */
  82. introduction?: string | null;
  83. /**
  84. * 地址
  85. *
  86. * @type {string}
  87. * @memberof LoginUserOutput
  88. */
  89. address?: string | null;
  90. /**
  91. * 电子签名
  92. *
  93. * @type {string}
  94. * @memberof LoginUserOutput
  95. */
  96. signature?: string | null;
  97. /**
  98. * 机构Id
  99. *
  100. * @type {number}
  101. * @memberof LoginUserOutput
  102. */
  103. orgId?: number;
  104. /**
  105. * 机构名称
  106. *
  107. * @type {string}
  108. * @memberof LoginUserOutput
  109. */
  110. orgName?: string | null;
  111. /**
  112. * 机构类型
  113. *
  114. * @type {string}
  115. * @memberof LoginUserOutput
  116. */
  117. orgType?: string | null;
  118. /**
  119. * 职位名称
  120. *
  121. * @type {string}
  122. * @memberof LoginUserOutput
  123. */
  124. posName?: string | null;
  125. /**
  126. * 按钮权限集合
  127. *
  128. * @type {Array<string>}
  129. * @memberof LoginUserOutput
  130. */
  131. buttons?: Array<string> | null;
  132. /**
  133. * 角色集合
  134. *
  135. * @type {Array<number>}
  136. * @memberof LoginUserOutput
  137. */
  138. roleIds?: Array<number> | null;
  139. /**
  140. * 水印文字
  141. *
  142. * @type {string}
  143. * @memberof LoginUserOutput
  144. */
  145. watermarkText?: string | null;
  146. /**
  147. * 租户Id
  148. *
  149. * @type {number}
  150. * @memberof LoginUserOutput
  151. */
  152. tenantId?: number | null;
  153. /**
  154. * 当前切换到的租户Id
  155. *
  156. * @type {number}
  157. * @memberof LoginUserOutput
  158. */
  159. currentTenantId?: number | null;
  160. }