update-approval-flow-input.ts 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * ApprovalFlow
  5. * <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. /**
  15. * 审批流更新输入参数
  16. * @export
  17. * @interface UpdateApprovalFlowInput
  18. */
  19. export interface UpdateApprovalFlowInput {
  20. /**
  21. * 编号
  22. * @type {string}
  23. * @memberof UpdateApprovalFlowInput
  24. */
  25. code?: string | null;
  26. /**
  27. * 名称
  28. * @type {string}
  29. * @memberof UpdateApprovalFlowInput
  30. */
  31. name?: string | null;
  32. /**
  33. * 表单
  34. * @type {string}
  35. * @memberof UpdateApprovalFlowInput
  36. */
  37. formJson?: string | null;
  38. /**
  39. * 流程
  40. * @type {string}
  41. * @memberof UpdateApprovalFlowInput
  42. */
  43. flowJson?: string | null;
  44. /**
  45. * 备注
  46. * @type {string}
  47. * @memberof UpdateApprovalFlowInput
  48. */
  49. remark?: string | null;
  50. /**
  51. * 创建时间
  52. * @type {Date}
  53. * @memberof UpdateApprovalFlowInput
  54. */
  55. createTime?: Date | null;
  56. /**
  57. * 更新时间
  58. * @type {Date}
  59. * @memberof UpdateApprovalFlowInput
  60. */
  61. updateTime?: Date | null;
  62. /**
  63. * 创建者Id
  64. * @type {number}
  65. * @memberof UpdateApprovalFlowInput
  66. */
  67. createUserId?: number | null;
  68. /**
  69. * 创建者姓名
  70. * @type {string}
  71. * @memberof UpdateApprovalFlowInput
  72. */
  73. createUserName?: string | null;
  74. /**
  75. * 修改者Id
  76. * @type {number}
  77. * @memberof UpdateApprovalFlowInput
  78. */
  79. updateUserId?: number | null;
  80. /**
  81. * 修改者姓名
  82. * @type {string}
  83. * @memberof UpdateApprovalFlowInput
  84. */
  85. updateUserName?: string | null;
  86. /**
  87. * 创建者部门Id
  88. * @type {number}
  89. * @memberof UpdateApprovalFlowInput
  90. */
  91. createOrgId?: number | null;
  92. /**
  93. * 创建者部门名称
  94. * @type {string}
  95. * @memberof UpdateApprovalFlowInput
  96. */
  97. createOrgName?: string | null;
  98. /**
  99. * 软删除
  100. * @type {boolean}
  101. * @memberof UpdateApprovalFlowInput
  102. */
  103. isDelete?: boolean;
  104. /**
  105. * 主键Id
  106. * @type {number}
  107. * @memberof UpdateApprovalFlowInput
  108. */
  109. id: number;
  110. }