package contract //驳回申请合同请求 type RejectReq struct { ContractId int `description:"合同id"` Remark string `description:"备注字段"` } //通过申请合同请求 type ApprovedReq struct { ContractId int `description:"合同id"` Remark string `description:"驳回理由"` }