FeeConsumptionQueryResponse.go 1.1 KB

1234567891011121314151617
  1. package fee_response
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  4. )
  5. // 【响应结果】响应结果
  6. type FeeConsumptionQueryResponse struct {
  7. Sign *common.FeeConsumptionQuerySignResponse `json:"sign,omitempty"`
  8. IdentityCompanyAuth *common.FeeConsumptionQueryIdentityCompanyAuthResponse `json:"identityCompanyAuth,omitempty"`
  9. IdentityCompanyCheck *common.FeeConsumptionQueryIdentityCompanyCheckResponse `json:"identityCompanyCheck,omitempty"`
  10. IdentityPersonalAuth *common.FeeConsumptionQueryIdentityPersonalAuthResponse `json:"identityPersonalAuth,omitempty"`
  11. IdentityUserCheck *common.FeeConsumptionQueryIdentityUserCheckResponse `json:"identityUserCheck,omitempty"`
  12. IdentityPersonalTrust *common.FeeConsumptionQueryIdentityPersonalTrustResponse `json:"identityPersonalTrust,omitempty"`
  13. DcEventCert *common.FeeConsumptionQueryDcEventCertResponse `json:"dcEventCert,omitempty"`
  14. DcLongCert *common.FeeConsumptionQueryDcLongCertResponse `json:"dcLongCert,omitempty"`
  15. }