EvidenceDownloadRequest.go 756 B

1234567891011121314151617181920
  1. package evidence_request
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
  4. )
  5. type EvidenceDownloadRequest struct {
  6. // <ext>core:true;format:string;deprecated:false</ext> 【电子签约文件id】电子签约文件id 【作用】 查询需下载存证报告的电子签约文件 【传参】 电子签约文件id和第三方业务系统文件id必传其一,均传入以电子签约文件id为准。
  7. ContractId *int64 `json:"contractId,omitempty"`
  8. }
  9. func (obj EvidenceDownloadRequest) GetUrl() string {
  10. return "/evidence/download"
  11. }
  12. func (obj EvidenceDownloadRequest) GetHttpParameter() *http.HttpParameter {
  13. parameter := http.NewGetHttpParameter()
  14. parameter.AddParam("contractId", obj.ContractId)
  15. return parameter
  16. }