update-menu-input.ts 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET 通用权限开发平台
  5. * 让 .NET 开发更简单、更通用、更流行。整合最新技术,模块插件式开发,前后端分离,开箱即用。<br/><u><b><font color='FF0000'> 👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!</font></b></u>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. *
  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 { MenuTypeEnum } from './menu-type-enum';
  15. import { StatusEnum } from './status-enum';
  16. import { SysMenu } from './sys-menu';
  17. /**
  18. *
  19. *
  20. * @export
  21. * @interface UpdateMenuInput
  22. */
  23. export interface UpdateMenuInput {
  24. /**
  25. * 雪花Id
  26. *
  27. * @type {number}
  28. * @memberof UpdateMenuInput
  29. */
  30. id?: number;
  31. /**
  32. * 创建时间
  33. *
  34. * @type {Date}
  35. * @memberof UpdateMenuInput
  36. */
  37. createTime?: Date;
  38. /**
  39. * 更新时间
  40. *
  41. * @type {Date}
  42. * @memberof UpdateMenuInput
  43. */
  44. updateTime?: Date | null;
  45. /**
  46. * 创建者Id
  47. *
  48. * @type {number}
  49. * @memberof UpdateMenuInput
  50. */
  51. createUserId?: number | null;
  52. /**
  53. * 创建者姓名
  54. *
  55. * @type {string}
  56. * @memberof UpdateMenuInput
  57. */
  58. createUserName?: string | null;
  59. /**
  60. * 修改者Id
  61. *
  62. * @type {number}
  63. * @memberof UpdateMenuInput
  64. */
  65. updateUserId?: number | null;
  66. /**
  67. * 修改者姓名
  68. *
  69. * @type {string}
  70. * @memberof UpdateMenuInput
  71. */
  72. updateUserName?: string | null;
  73. /**
  74. * 父Id
  75. *
  76. * @type {number}
  77. * @memberof UpdateMenuInput
  78. */
  79. pid?: number;
  80. /**
  81. * @type {MenuTypeEnum}
  82. * @memberof UpdateMenuInput
  83. */
  84. type?: MenuTypeEnum;
  85. /**
  86. * 路由名称
  87. *
  88. * @type {string}
  89. * @memberof UpdateMenuInput
  90. */
  91. name?: string | null;
  92. /**
  93. * 路由地址
  94. *
  95. * @type {string}
  96. * @memberof UpdateMenuInput
  97. */
  98. path?: string | null;
  99. /**
  100. * 组件路径
  101. *
  102. * @type {string}
  103. * @memberof UpdateMenuInput
  104. */
  105. component?: string | null;
  106. /**
  107. * 重定向
  108. *
  109. * @type {string}
  110. * @memberof UpdateMenuInput
  111. */
  112. redirect?: string | null;
  113. /**
  114. * 权限标识
  115. *
  116. * @type {string}
  117. * @memberof UpdateMenuInput
  118. */
  119. permission?: string | null;
  120. /**
  121. * 图标
  122. *
  123. * @type {string}
  124. * @memberof UpdateMenuInput
  125. */
  126. icon?: string | null;
  127. /**
  128. * 是否内嵌
  129. *
  130. * @type {boolean}
  131. * @memberof UpdateMenuInput
  132. */
  133. isIframe?: boolean;
  134. /**
  135. * 外链链接
  136. *
  137. * @type {string}
  138. * @memberof UpdateMenuInput
  139. */
  140. outLink?: string | null;
  141. /**
  142. * 是否隐藏
  143. *
  144. * @type {boolean}
  145. * @memberof UpdateMenuInput
  146. */
  147. isHide?: boolean;
  148. /**
  149. * 是否缓存
  150. *
  151. * @type {boolean}
  152. * @memberof UpdateMenuInput
  153. */
  154. isKeepAlive?: boolean;
  155. /**
  156. * 是否固定
  157. *
  158. * @type {boolean}
  159. * @memberof UpdateMenuInput
  160. */
  161. isAffix?: boolean;
  162. /**
  163. * 排序
  164. *
  165. * @type {number}
  166. * @memberof UpdateMenuInput
  167. */
  168. orderNo?: number;
  169. /**
  170. * @type {StatusEnum}
  171. * @memberof UpdateMenuInput
  172. */
  173. status?: StatusEnum;
  174. /**
  175. * 备注
  176. *
  177. * @type {string}
  178. * @memberof UpdateMenuInput
  179. */
  180. remark?: string | null;
  181. /**
  182. * 菜单子项
  183. *
  184. * @type {Array<SysMenu>}
  185. * @memberof UpdateMenuInput
  186. */
  187. children?: Array<SysMenu> | null;
  188. /**
  189. * 名称
  190. *
  191. * @type {string}
  192. * @memberof UpdateMenuInput
  193. */
  194. title: string;
  195. /**
  196. * 租户Id
  197. *
  198. * @type {number}
  199. * @memberof UpdateMenuInput
  200. */
  201. tenantId?: number;
  202. }