package company_response import ( "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common" ) // 【响应结果】响应结果,参考接口说明CompanyFullAuthResponse type CompanyauthV2Response struct { // 【法人在线授权链接】法人在线授权链接,认证方式选择1(法定代表人认证)时返回 LegalSignUrl string `json:"legalSignUrl,omitempty"` // 【认证id】认证id,可用此查询具体某次认证状态 RequestId string `json:"requestId,omitempty"` // 【单位id】单位id CompanyId string `json:"companyId,omitempty"` PayInfo *common.PayInfo `json:"payInfo,omitempty"` }