contract_approval.go 311 B

12345678910111213
  1. package contract
  2. //驳回申请合同请求
  3. type RejectReq struct {
  4. ContractId int `description:"合同id"`
  5. Remark string `description:"备注字段"`
  6. }
  7. //通过申请合同请求
  8. type ApprovedReq struct {
  9. ContractId int `description:"合同id"`
  10. Remark string `description:"驳回理由"`
  11. }