1234567891011121314151617181920212223242526272829303132333435 |
- package sb
- type GsRegInfo struct {
- ID uint `json:"id" gorm:"primary_key"`
- ComID uint `json:"comId"`
- TaxpayerNumer string `json:"taxpayerNumer"`
- TaxpayerName string `json:"taxpayerName"`
- TaxpayerStatus string `json:"taxpayerStatus"`
- SubjectRegistrationType string `json:"subjectRegistrationType"`
- RegistrationType string `json:"registrationType"`
- OrganizationCode string `json:"organizationCode"`
- TaxAuthorities string `json:"taxAuthorities"`
- Taxsuks string `json:"taxsuks"`
- TaxAdmin string `json:"taxAdmin"`
- RegistrAddress string `json:"registrAddress"`
- ProductionAddress string `json:"productionAddress"`
- RegisteredCapital string `json:"registeredCapital"`
- TotalInvestment string `json:"totalInvestment"`
- Gykglx string `json:"gykglx"`
- GyInvestmentProportion string `json:"gyInvestmentProportion"`
- NaturalPeopleInvestmentProportion string `json:"naturalPeopleInvestmentProportion"`
- ForeignInvestmentRatio string `json:"foreignInvestmentRatio"`
- LegalRepresentativeName string `json:"legalRepresentativeName"`
- LegalRepresentativeIDCard string `json:"legalRepresentativeIDCard"`
- LegalRepresentativePhone string `json:"legalRepresentativePhone"`
- LegalRepresentativeTel string `json:"legalRepresentativeTel"`
- FinancialManagerName string `json:"financialManagerName"`
- FinancialManagerIDCard string `json:"financialManagerIDCard"`
- FinancialManagerPhone string `json:"financialManagerPhone"`
- FinancialManagerTel string `json:"financialManagerTel"`
- TaxCollectorName string `json:"taxCollectorName"`
- TaxCollertorIDCard string `json:"taxCollertorIDCard"`
- TaxCollertorPhone string `json:"taxCollertorPhone"`
- TaxCollertorTel string `json:"taxCollertorTel"`
- }
|