package gys type GysCompanyTax struct { Id uint `gorm:"column:id;primary_key" json:"id"` CompanyId uint `gorm:"column:company_id" json:"companyId"` TaxpayerQualificationType string `gorm:"column:taxpayer_qualification_type" json:"taxpayerQualificationType"` StartDate string `gorm:"column:start_date" json:"startDate"` EndDate string `gorm:"column:end_date" json:"endDate"` TaxpayerIdentificationNumber string `gorm:"column:taxpayer_identification_number" json:"taxpayerIdentificationNumber"` } func (*GysCompanyTax) TableName() string { return "gys_company_tax" }