CompanyauthGetauthresultRequest.go 514 B

1234567891011121314151617181920
  1. package company_request
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/http"
  4. )
  5. type CompanyauthGetauthresultRequest struct {
  6. // 【认证ID】认证ID
  7. RequestId string `json:"requestId"`
  8. }
  9. func (obj CompanyauthGetauthresultRequest) GetUrl() string {
  10. return "/companyauth/getauthresult"
  11. }
  12. func (obj CompanyauthGetauthresultRequest) GetHttpParameter() *http.HttpParameter {
  13. parameter := http.NewPostHttpParameter()
  14. parameter.AddParam("requestId", obj.RequestId)
  15. return parameter
  16. }