update-plugin-input.ts 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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 { StatusEnum } from './status-enum';
  15. /**
  16. *
  17. *
  18. * @export
  19. * @interface UpdatePluginInput
  20. */
  21. export interface UpdatePluginInput {
  22. /**
  23. * 雪花Id
  24. *
  25. * @type {number}
  26. * @memberof UpdatePluginInput
  27. */
  28. id?: number;
  29. /**
  30. * 创建时间
  31. *
  32. * @type {Date}
  33. * @memberof UpdatePluginInput
  34. */
  35. createTime?: Date;
  36. /**
  37. * 更新时间
  38. *
  39. * @type {Date}
  40. * @memberof UpdatePluginInput
  41. */
  42. updateTime?: Date | null;
  43. /**
  44. * 创建者Id
  45. *
  46. * @type {number}
  47. * @memberof UpdatePluginInput
  48. */
  49. createUserId?: number | null;
  50. /**
  51. * 创建者姓名
  52. *
  53. * @type {string}
  54. * @memberof UpdatePluginInput
  55. */
  56. createUserName?: string | null;
  57. /**
  58. * 修改者Id
  59. *
  60. * @type {number}
  61. * @memberof UpdatePluginInput
  62. */
  63. updateUserId?: number | null;
  64. /**
  65. * 修改者姓名
  66. *
  67. * @type {string}
  68. * @memberof UpdatePluginInput
  69. */
  70. updateUserName?: string | null;
  71. /**
  72. * 软删除
  73. *
  74. * @type {boolean}
  75. * @memberof UpdatePluginInput
  76. */
  77. isDelete?: boolean;
  78. /**
  79. * 租户Id
  80. *
  81. * @type {number}
  82. * @memberof UpdatePluginInput
  83. */
  84. tenantId?: number | null;
  85. /**
  86. * C#代码
  87. *
  88. * @type {string}
  89. * @memberof UpdatePluginInput
  90. */
  91. csharpCode: string;
  92. /**
  93. * 程序集名称
  94. *
  95. * @type {string}
  96. * @memberof UpdatePluginInput
  97. */
  98. assemblyName?: string | null;
  99. /**
  100. * 排序
  101. *
  102. * @type {number}
  103. * @memberof UpdatePluginInput
  104. */
  105. orderNo?: number;
  106. /**
  107. * @type {StatusEnum}
  108. * @memberof UpdatePluginInput
  109. */
  110. status?: StatusEnum;
  111. /**
  112. * 备注
  113. *
  114. * @type {string}
  115. * @memberof UpdatePluginInput
  116. */
  117. remark?: string | null;
  118. /**
  119. * 名称
  120. *
  121. * @type {string}
  122. * @memberof UpdatePluginInput
  123. */
  124. name: string;
  125. }