admin-result-iaction-result.ts 1.5 KB

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