admin-result-list-sys-org.ts 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 { SysOrg } from './sys-org';
  15. import {
  16. SysOrg,
  17. } from ".";
  18. /**
  19. * 全局返回结果
  20. *
  21. * @export
  22. * @interface AdminResultListSysOrg
  23. */
  24. export interface AdminResultListSysOrg {
  25. /**
  26. * 状态码
  27. *
  28. * @type {number}
  29. * @memberof AdminResultListSysOrg
  30. */
  31. code?: number;
  32. /**
  33. * 类型success、warning、error
  34. *
  35. * @type {string}
  36. * @memberof AdminResultListSysOrg
  37. */
  38. type?: string | null;
  39. /**
  40. * 错误信息
  41. *
  42. * @type {string}
  43. * @memberof AdminResultListSysOrg
  44. */
  45. message?: string | null;
  46. /**
  47. * 数据
  48. *
  49. * @type {Array<SysOrg>}
  50. * @memberof AdminResultListSysOrg
  51. */
  52. result?: Array<SysOrg> | null;
  53. /**
  54. * 附加数据
  55. *
  56. * @type {any}
  57. * @memberof AdminResultListSysOrg
  58. */
  59. extras?: any | null;
  60. /**
  61. * 时间
  62. *
  63. * @type {Date}
  64. * @memberof AdminResultListSysOrg
  65. */
  66. time?: Date;
  67. }