gs_reg_info.go 3.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package sb
  2. type GsRegInfo struct {
  3. ID uint `json:"id" gorm:"primary_key"`
  4. ComID uint `json:"comId"` // 小程序ID
  5. TaxpayerNumer string `json:"taxpayerNumer"` // 纳税人识别号
  6. TaxpayerName string `json:"taxpayerName"` // 纳税人名称
  7. TaxpayerStatus string `json:"taxpayerStatus"` // 纳税人状态
  8. SubjectRegistrationType string `json:"subjectRegistrationType"` // 课证主题登记类型
  9. RegistrationType string `json:"registrationType"` // 登记注册类型
  10. OrganizationCode string `json:"organizationCode"` // 组织机构代码
  11. TaxAuthorities string `json:"taxAuthorities"` // 主管税务机关
  12. Taxsuks string `json:"taxsuks"` // 主管税务科所
  13. TaxAdmin string `json:"taxAdmin"` // 税收管理员
  14. RegistrAddress string `json:"registrAddress"` // 注册地址
  15. ProductionAddress string `json:"productionAddress"` // 生产经营地址
  16. RegisteredCapital string `json:"registeredCapital"` // 注册资本
  17. TotalInvestment string `json:"totalInvestment"` // 投资总额
  18. Gykglx string `json:"gykglx"` // 国有控股类型
  19. GyInvestmentProportion string `json:"gyInvestmentProportion"` // 国有投资比例
  20. NaturalPeopleInvestmentProportion string `json:"naturalPeopleInvestmentProportion"` // 自然人投资比例
  21. ForeignInvestmentRatio string `json:"foreignInvestmentRatio"` // 外资投资比例
  22. LegalRepresentativeName string `json:"legalRepresentativeName"` // 法定代表人姓名
  23. LegalRepresentativeIDCard string `json:"legalRepresentativeIDCard"` // 法定代表人身份证号码
  24. LegalRepresentativePhone string `json:"legalRepresentativePhone"` // 法定代表人移动电话
  25. LegalRepresentativeTel string `json:"legalRepresentativeTel"` // 法定代表人固定电话
  26. FinancialManagerName string `json:"financialManagerName"` // 财务负责人姓名
  27. FinancialManagerIDCard string `json:"financialManagerIDCard"` // 财务负责人身份证号码
  28. FinancialManagerPhone string `json:"financialManagerPhone"` // 财务负责人移动电话
  29. FinancialManagerTel string `json:"financialManagerTel"` // 财务负责人固定电话
  30. TaxCollectorName string `json:"taxCollectorName"` // 办税人姓名
  31. TaxCollertorIDCard string `json:"taxCollertorIDCard"` // 办税人身份证号码
  32. TaxCollertorPhone string `json:"taxCollertorPhone"` // 办税人手机号码
  33. TaxCollertorTel string `json:"taxCollertorTel"` // 办税人固定电话
  34. }