bi_approve.go 557 B

123456789101112131415161718192021
  1. package request
  2. type BiApprovePassReq struct {
  3. BiApproveId int `description:"审批ID"`
  4. }
  5. // BiApproveRefuseReq 审批驳回请求体
  6. type BiApproveRefuseReq struct {
  7. BiApproveId int `description:"审批ID"`
  8. ApproveRemark string `description:"驳回理由"`
  9. }
  10. // BiApproveCancelReq 撤销审批请求体
  11. type BiApproveCancelReq struct {
  12. BiApproveId int `description:"审批ID"`
  13. }
  14. // BiApproveCheckApproveOpenReq 校验分类是否打开审批请求体
  15. type BiApproveCheckApproveOpenReq struct {
  16. ClassifyId int `description:"一级分类ID"`
  17. }