tenant-input.ts 845 B

123456789101112131415161718192021222324252627282930313233
  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 { StatusEnum } from './status-enum';
  15. /**
  16. *
  17. * @export
  18. * @interface TenantInput
  19. */
  20. export interface TenantInput {
  21. /**
  22. * 主键Id
  23. * @type {number}
  24. * @memberof TenantInput
  25. */
  26. id: number;
  27. /**
  28. *
  29. * @type {StatusEnum}
  30. * @memberof TenantInput
  31. */
  32. status?: StatusEnum;
  33. }