update-org-input.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. import { SysOrg } from './sys-org';
  16. /**
  17. *
  18. * @export
  19. * @interface UpdateOrgInput
  20. */
  21. export interface UpdateOrgInput {
  22. /**
  23. * 雪花Id
  24. * @type {number}
  25. * @memberof UpdateOrgInput
  26. */
  27. id?: number;
  28. /**
  29. * 创建时间
  30. * @type {Date}
  31. * @memberof UpdateOrgInput
  32. */
  33. createTime?: Date;
  34. /**
  35. * 更新时间
  36. * @type {Date}
  37. * @memberof UpdateOrgInput
  38. */
  39. updateTime?: Date | null;
  40. /**
  41. * 创建者Id
  42. * @type {number}
  43. * @memberof UpdateOrgInput
  44. */
  45. createUserId?: number | null;
  46. /**
  47. * 创建者姓名
  48. * @type {string}
  49. * @memberof UpdateOrgInput
  50. */
  51. createUserName?: string | null;
  52. /**
  53. * 修改者Id
  54. * @type {number}
  55. * @memberof UpdateOrgInput
  56. */
  57. updateUserId?: number | null;
  58. /**
  59. * 修改者姓名
  60. * @type {string}
  61. * @memberof UpdateOrgInput
  62. */
  63. updateUserName?: string | null;
  64. /**
  65. * 软删除
  66. * @type {boolean}
  67. * @memberof UpdateOrgInput
  68. */
  69. isDelete?: boolean;
  70. /**
  71. * 租户Id
  72. * @type {number}
  73. * @memberof UpdateOrgInput
  74. */
  75. tenantId?: number | null;
  76. /**
  77. * 父Id
  78. * @type {number}
  79. * @memberof UpdateOrgInput
  80. */
  81. pid?: number;
  82. /**
  83. * 编码
  84. * @type {string}
  85. * @memberof UpdateOrgInput
  86. */
  87. code?: string | null;
  88. /**
  89. * 级别
  90. * @type {number}
  91. * @memberof UpdateOrgInput
  92. */
  93. level?: number | null;
  94. /**
  95. * 负责人Id
  96. * @type {number}
  97. * @memberof UpdateOrgInput
  98. */
  99. directorId?: number | null;
  100. /**
  101. * 排序
  102. * @type {number}
  103. * @memberof UpdateOrgInput
  104. */
  105. orderNo?: number;
  106. /**
  107. *
  108. * @type {StatusEnum}
  109. * @memberof UpdateOrgInput
  110. */
  111. status?: StatusEnum;
  112. /**
  113. * 备注
  114. * @type {string}
  115. * @memberof UpdateOrgInput
  116. */
  117. remark?: string | null;
  118. /**
  119. * 机构子项
  120. * @type {Array<SysOrg>}
  121. * @memberof UpdateOrgInput
  122. */
  123. children?: Array<SysOrg> | null;
  124. /**
  125. * 是否禁止选中
  126. * @type {boolean}
  127. * @memberof UpdateOrgInput
  128. */
  129. disabled?: boolean;
  130. /**
  131. * 名称
  132. * @type {string}
  133. * @memberof UpdateOrgInput
  134. */
  135. name: string;
  136. /**
  137. * 机构类型
  138. * @type {string}
  139. * @memberof UpdateOrgInput
  140. */
  141. type?: string | null;
  142. }