bi_approve.go 397 B

123456789101112131415161718
  1. package request
  2. type BiApprovePassReq struct {
  3. BiApproveId int `description:"审批ID"`
  4. }
  5. type BiApproveRefuseReq struct {
  6. BiApproveId int `description:"审批ID"`
  7. ApproveRemark string `description:"驳回理由"`
  8. }
  9. type BiApproveCancelReq struct {
  10. BiApproveId int `description:"审批ID"`
  11. }
  12. type BiApproveCheckApproveOpenReq struct {
  13. ClassifyId int `description:"一级分类ID"`
  14. }