You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
666 B

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"
}