update-code-gen-input.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. /**
  15. *
  16. * @export
  17. * @interface UpdateCodeGenInput
  18. */
  19. export interface UpdateCodeGenInput {
  20. /**
  21. * 当前页码
  22. * @type {number}
  23. * @memberof UpdateCodeGenInput
  24. */
  25. page?: number;
  26. /**
  27. * 页码容量
  28. * @type {number}
  29. * @memberof UpdateCodeGenInput
  30. */
  31. pageSize?: number;
  32. /**
  33. * 排序字段
  34. * @type {string}
  35. * @memberof UpdateCodeGenInput
  36. */
  37. field?: string | null;
  38. /**
  39. * 排序方向
  40. * @type {string}
  41. * @memberof UpdateCodeGenInput
  42. */
  43. order?: string | null;
  44. /**
  45. * 降序排序
  46. * @type {string}
  47. * @memberof UpdateCodeGenInput
  48. */
  49. descStr?: string | null;
  50. /**
  51. * 作者姓名
  52. * @type {string}
  53. * @memberof UpdateCodeGenInput
  54. */
  55. authorName?: string | null;
  56. /**
  57. * 类名
  58. * @type {string}
  59. * @memberof UpdateCodeGenInput
  60. */
  61. className?: string | null;
  62. /**
  63. * 是否移除表前缀
  64. * @type {string}
  65. * @memberof UpdateCodeGenInput
  66. */
  67. tablePrefix?: string | null;
  68. /**
  69. * 库定位器名
  70. * @type {string}
  71. * @memberof UpdateCodeGenInput
  72. */
  73. configId?: string | null;
  74. /**
  75. * 数据库名(保留字段)
  76. * @type {string}
  77. * @memberof UpdateCodeGenInput
  78. */
  79. dbName?: string | null;
  80. /**
  81. * 数据库类型
  82. * @type {string}
  83. * @memberof UpdateCodeGenInput
  84. */
  85. dbType?: string | null;
  86. /**
  87. * 数据库链接
  88. * @type {string}
  89. * @memberof UpdateCodeGenInput
  90. */
  91. connectionString?: string | null;
  92. /**
  93. * 生成方式
  94. * @type {string}
  95. * @memberof UpdateCodeGenInput
  96. */
  97. generateType?: string | null;
  98. /**
  99. * 数据库表名
  100. * @type {string}
  101. * @memberof UpdateCodeGenInput
  102. */
  103. tableName?: string | null;
  104. /**
  105. * 命名空间
  106. * @type {string}
  107. * @memberof UpdateCodeGenInput
  108. */
  109. nameSpace?: string | null;
  110. /**
  111. * 业务名(业务代码包名称)
  112. * @type {string}
  113. * @memberof UpdateCodeGenInput
  114. */
  115. busName?: string | null;
  116. /**
  117. * 功能名(数据库表名称)
  118. * @type {string}
  119. * @memberof UpdateCodeGenInput
  120. */
  121. tableComment?: string | null;
  122. /**
  123. * 菜单应用分类(应用编码)
  124. * @type {string}
  125. * @memberof UpdateCodeGenInput
  126. */
  127. menuApplication?: string | null;
  128. /**
  129. * 菜单父级
  130. * @type {number}
  131. * @memberof UpdateCodeGenInput
  132. */
  133. menuPid?: number;
  134. /**
  135. * 代码生成器Id
  136. * @type {number}
  137. * @memberof UpdateCodeGenInput
  138. */
  139. id: number;
  140. }