123456789101112131415161718192021 |
- package request
- type BiApprovePassReq struct {
- BiApproveId int `description:"审批ID"`
- }
- // BiApproveRefuseReq 审批驳回请求体
- type BiApproveRefuseReq struct {
- BiApproveId int `description:"审批ID"`
- ApproveRemark string `description:"驳回理由"`
- }
- // BiApproveCancelReq 撤销审批请求体
- type BiApproveCancelReq struct {
- BiApproveId int `description:"审批ID"`
- }
- // BiApproveCheckApproveOpenReq 校验分类是否打开审批请求体
- type BiApproveCheckApproveOpenReq struct {
- ClassifyId int `description:"一级分类ID"`
- }
|