| 1234567891011121314 |
- package company_response
- import (
- "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
- )
- // 【校验信息】校验信息
- type CompanyInfoVerificationResponse struct {
- // 【校验结果】校验结果,true为通过、false为未通过
- VerificationResult *bool `json:"verificationResult,omitempty"`
- // 【失败原因】失败原因,校验失败的具体原因
- FailureReason string `json:"failureReason,omitempty"`
- CorpCredit *common.CompanyInfoVerificationCorpCreditResponse `json:"corpCredit,omitempty"`
- }
|