CrossborderContractQueryLocationRequest.go 1.2 KB

1234567891011121314151617181920212223
  1. package others_request
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
  4. )
  5. type CrossborderContractQueryLocationRequest struct {
  6. // <ext>core:true;format:string</ext> 【跨境电子签约文件id】跨境电子签约文件id 【作用】 指定需查询签署位置的跨境电子签约文件 【传参】 电子签约文件id和第三方业务系统文件id必传其一,均传入以电子签约文件id为准。
  7. ContractId *int64 `json:"contractId,omitempty"`
  8. // <ext>core:true;format:string</ext> 【第三方业务系统文件id】第三方业务系统文件id 【作用】 指定需查询签署位置的跨境电子签约文件 【传参】 电子签约文件id和第三方业务系统文件id必传其一,均传入以电子签约文件id为准。
  9. BizId string `json:"bizId,omitempty"`
  10. }
  11. func (obj CrossborderContractQueryLocationRequest) GetUrl() string {
  12. return "/cross-border/contract/query/location"
  13. }
  14. func (obj CrossborderContractQueryLocationRequest) GetHttpParameter() *http.HttpParameter {
  15. parameter := http.NewGetHttpParameter()
  16. parameter.AddParam("contractId", obj.ContractId)
  17. parameter.AddParam("bizId", obj.BizId)
  18. return parameter
  19. }