HonoteResultQueryRequest.go 587 B

1234567891011121314151617181920
  1. package others_request
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
  4. )
  5. type HonoteResultQueryRequest struct {
  6. // <ext>core:true</ext> 【批次号】批次号 【作用】 用于查询批量上传的文件中,是否包含隐形水印
  7. BatchId string `json:"batchId,omitempty"`
  8. }
  9. func (obj HonoteResultQueryRequest) GetUrl() string {
  10. return "/honote/result/query"
  11. }
  12. func (obj HonoteResultQueryRequest) GetHttpParameter() *http.HttpParameter {
  13. parameter := http.NewGetHttpParameter()
  14. parameter.AddParam("batchId", obj.BatchId)
  15. return parameter
  16. }