open-access-output.ts 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET 通用权限开发平台
  5. * 让 .NET 开发更简单、更通用、更流行。前后端分离架构(.NET6/Vue3),开箱即用紧随前沿技术。<br/><a href='https://gitee.com/zuohuaijun/Admin.NET/'>https://gitee.com/zuohuaijun/Admin.NET</a>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. * Contact: 515096995@qq.com
  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 {
  15. } from ".";
  16. /**
  17. *
  18. *
  19. * @export
  20. * @interface OpenAccessOutput
  21. */
  22. export interface OpenAccessOutput {
  23. /**
  24. * 雪花Id
  25. *
  26. * @type {number}
  27. * @memberof OpenAccessOutput
  28. */
  29. id?: number;
  30. /**
  31. * 创建时间
  32. *
  33. * @type {Date}
  34. * @memberof OpenAccessOutput
  35. */
  36. createTime?: Date | null;
  37. /**
  38. * 更新时间
  39. *
  40. * @type {Date}
  41. * @memberof OpenAccessOutput
  42. */
  43. updateTime?: Date | null;
  44. /**
  45. * 创建者Id
  46. *
  47. * @type {number}
  48. * @memberof OpenAccessOutput
  49. */
  50. createUserId?: number | null;
  51. /**
  52. * 创建者姓名
  53. *
  54. * @type {string}
  55. * @memberof OpenAccessOutput
  56. */
  57. createUserName?: string | null;
  58. /**
  59. * 修改者Id
  60. *
  61. * @type {number}
  62. * @memberof OpenAccessOutput
  63. */
  64. updateUserId?: number | null;
  65. /**
  66. * 修改者姓名
  67. *
  68. * @type {string}
  69. * @memberof OpenAccessOutput
  70. */
  71. updateUserName?: string | null;
  72. /**
  73. * 软删除
  74. *
  75. * @type {boolean}
  76. * @memberof OpenAccessOutput
  77. */
  78. isDelete?: boolean;
  79. /**
  80. * 身份标识
  81. *
  82. * @type {string}
  83. * @memberof OpenAccessOutput
  84. */
  85. accessKey: string;
  86. /**
  87. * 密钥
  88. *
  89. * @type {string}
  90. * @memberof OpenAccessOutput
  91. */
  92. accessSecret: string;
  93. /**
  94. * 绑定租户Id
  95. *
  96. * @type {number}
  97. * @memberof OpenAccessOutput
  98. */
  99. bindTenantId?: number;
  100. /**
  101. * 绑定用户Id
  102. *
  103. * @type {number}
  104. * @memberof OpenAccessOutput
  105. */
  106. bindUserId?: number;
  107. /**
  108. * 绑定用户账号
  109. *
  110. * @type {string}
  111. * @memberof OpenAccessOutput
  112. */
  113. bindUserAccount?: string | null;
  114. /**
  115. * 绑定租户名称
  116. *
  117. * @type {string}
  118. * @memberof OpenAccessOutput
  119. */
  120. bindTenantName?: string | null;
  121. }