123456789101112131415161718 |
- package main
- // BizContentForLabelQuery 芝麻企业信用企业标签查询
- type BizContentForLabelQuery struct {
- EPCertNo string `json:"ep_cert_no"`
- ShowFlag bool `json:"show_flag"`
- SceneCode string `json:"scene_code"`
- }
- // CreditLabel CreditLabel
- type CreditLabel struct {
- ZhimaToptype string `json:"zhima_toptype"`
- ZhimaSubtype string `json:"zhima_subtype"`
- ZhimaName string `json:"zhima_name"`
- ZhimaCode string `json:"zhima_code"`
- ZhimaDefinition string `json:"zhima_definition"`
- ZhimaValue string `json:"zhima_value"`
- }
|