db-table-input.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 { DbColumnInput } from './db-column-input';
  15. /**
  16. *
  17. * @export
  18. * @interface DbTableInput
  19. */
  20. export interface DbTableInput {
  21. /**
  22. *
  23. * @type {string}
  24. * @memberof DbTableInput
  25. */
  26. configId?: string | null;
  27. /**
  28. *
  29. * @type {string}
  30. * @memberof DbTableInput
  31. */
  32. tableName?: string | null;
  33. /**
  34. *
  35. * @type {string}
  36. * @memberof DbTableInput
  37. */
  38. description?: string | null;
  39. /**
  40. *
  41. * @type {Array<DbColumnInput>}
  42. * @memberof DbTableInput
  43. */
  44. dbColumnInfoList?: Array<DbColumnInput> | null;
  45. }