1234567891011121314151617181920 |
- package sb
- // 增值税补充申报表
- type GsVatBc struct {
- GsBaseModel
- GsMainId uint `gorm:"column:gs_main_id" json:"gsMainId" form:"gsMainId"`
- Q0002 string `gorm:"column:q0002" json:"q0002" form:"q0002"`
- Q0021 string `gorm:"column:q0021" json:"q0021" form:"q0021"`
- Q0022 string `gorm:"column:q0022" json:"q0022" form:"q0022"`
- Q0003 string `gorm:"column:q0003" json:"q0003" form:"q0003"`
- Q0004 string `gorm:"column:q0004" json:"q0004" form:"q0004"`
- Q0038 string `gorm:"column:q0038" json:"q0038" form:"q0038"`
- Q0606 string `gorm:"column:q0606" json:"q0606" form:"q0606"`
- Q0607 string `gorm:"column:q0607" json:"q0607" form:"q0607"`
- Q0608 string `gorm:"column:q0608" json:"q0608" form:"q0608"`
- Q0054 string `gorm:"column:q0054" json:"q0054" form:"q0054"`
- Q0052 string `gorm:"column:q0052" json:"q0052" form:"q0052"`
- Q0053 string `gorm:"column:q0053" json:"q0053" form:"q0053"`
- }
|