ContractBatchRecallResultRequest.go 724 B

1234567891011121314151617181920
  1. package contract_request
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
  4. )
  5. type ContractBatchRecallResultRequest struct {
  6. // <ext>core:true;format:string;deprecated:false</ext> 【批量操作id】批量操作id 【作用】 用于查询批量撤回文件操作的结果,该参数可在调用 <docs>/contract/batch/recall</docs> 后的返回参数中获取
  7. BatchId string `json:"batchId"`
  8. }
  9. func (obj ContractBatchRecallResultRequest) GetUrl() string {
  10. return "/contract/batch/recall/result"
  11. }
  12. func (obj ContractBatchRecallResultRequest) GetHttpParameter() *http.HttpParameter {
  13. parameter := http.NewPostHttpParameter()
  14. parameter.AddParam("batchId", obj.BatchId)
  15. return parameter
  16. }