| 1234567891011121314151617 |
- package fee_response
- import (
- "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
- )
- // 【响应结果】响应结果
- type FeeConsumptionQueryResponse struct {
- Sign *common.FeeConsumptionQuerySignResponse `json:"sign,omitempty"`
- IdentityCompanyAuth *common.FeeConsumptionQueryIdentityCompanyAuthResponse `json:"identityCompanyAuth,omitempty"`
- IdentityCompanyCheck *common.FeeConsumptionQueryIdentityCompanyCheckResponse `json:"identityCompanyCheck,omitempty"`
- IdentityPersonalAuth *common.FeeConsumptionQueryIdentityPersonalAuthResponse `json:"identityPersonalAuth,omitempty"`
- IdentityUserCheck *common.FeeConsumptionQueryIdentityUserCheckResponse `json:"identityUserCheck,omitempty"`
- IdentityPersonalTrust *common.FeeConsumptionQueryIdentityPersonalTrustResponse `json:"identityPersonalTrust,omitempty"`
- DcEventCert *common.FeeConsumptionQueryDcEventCertResponse `json:"dcEventCert,omitempty"`
- DcLongCert *common.FeeConsumptionQueryDcLongCertResponse `json:"dcLongCert,omitempty"`
- }
|