yinbentan
2024-09-26 2030ec81f18f4ec9ea1800f13046acafff6d50f7
1
2
3
4
5
6
7
8
9
10
11
package request
 
type Business struct {
    Representative      string `json:"representative"`        // 法人代表
    RegistrationTime    string `json:"registration_time"`     // 注册时间
    RegisteredCapitalId int    `json:"registered_capital_id"` // 注册资金
    IndustryId          int    `json:"industry_id"`           // 所属行业
    EnterpriseNatureId  int    `json:"enterprise_nature_id"`  // 企业性质
    EnterpriseScaleId   int    `json:"enterprise_scale_id"`   // 企业规模
    BusinessScope       string `json:"business_scope"`        // 经营范围
}