gs_vat_jsxm.go 1.1 KB

123456789101112131415161718192021
  1. package sb
  2. // 增值税减免税申报明细表
  3. type GsVatJsxm struct {
  4. GsBaseModel
  5. GsMainId uint `gorm:"column:gs_main_id" json:"gsMainId" form:"gsMainId"`
  6. Type int8 `gorm:"column:type" json:"type" form:"type"` //1减免 2出口 3跨境 4免税
  7. JmxzdmId uint `gorm:"column:jmxzdm_id" json:"jmxzdmId" form:"jmxzdmId"`
  8. JmxzdmSb
  9. Qcye string `gorm:"column:qcye" json:"qcye" form:"qcye"` //期初余额
  10. Bqfse string `gorm:"column:bqfse" json:"bqfse" form:"bqfse"` //本期发生额
  11. Bqydjse string `gorm:"column:bqydjse" json:"bqydjse" form:"bqydjse"` //本期应抵减税额 3=1+2
  12. Bqsjdjse string `gorm:"column:bqsjdjse" json:"bqsjdjse" form:"bqsjdjse"` //本期实际抵减税额 4≤3
  13. Qmye string `gorm:"column:qmye" json:"qmye" form:"qmye"` //期末余额 5=3-4
  14. SwsxDm string `gorm:"column:swsx_dm" json:"swsxDm" form:"swsxDm"`
  15. Hmc string `gorm:"column:hmc" json:"hmc" form:"hmc"`
  16. Hmc1 string `gorm:"column:hmc1" json:"hmc1" form:"hmc1"`
  17. Hmc2 string `gorm:"column:hmc2" json:"hmc2" form:"hmc2"`
  18. Ewbhxh string `gorm:"column:ewbhxh" json:"ewbhxh" form:"ewbhxh"`
  19. }