admin-result-list-string.ts 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 AdminResultListString
  21. */
  22. export interface AdminResultListString {
  23. /**
  24. * 状态码
  25. *
  26. * @type {number}
  27. * @memberof AdminResultListString
  28. */
  29. code?: number;
  30. /**
  31. * 类型success、warning、error
  32. *
  33. * @type {string}
  34. * @memberof AdminResultListString
  35. */
  36. type?: string | null;
  37. /**
  38. * 错误信息
  39. *
  40. * @type {string}
  41. * @memberof AdminResultListString
  42. */
  43. message?: string | null;
  44. /**
  45. * 数据
  46. *
  47. * @type {Array<string>}
  48. * @memberof AdminResultListString
  49. */
  50. result?: Array<string> | null;
  51. /**
  52. * 附加数据
  53. *
  54. * @type {any}
  55. * @memberof AdminResultListString
  56. */
  57. extras?: any | null;
  58. /**
  59. * 时间
  60. *
  61. * @type {Date}
  62. * @memberof AdminResultListString
  63. */
  64. time?: Date;
  65. }