gs_vat_qt.go 841 B

12345678910111213141516
  1. package sb
  2. // 其他扣税凭证明细表
  3. type GsVatQt struct {
  4. GsBaseModel
  5. GsMainId uint `gorm:"column:gs_main_id" json:"gsMainId" form:"gsMainId"`
  6. L1 int `gorm:"column:l1" json:"l1" form:"l1"` //桥,闸通行费 份数
  7. L2 string `gorm:"column:l2" json:"l2" form:"l2"` //桥,闸通行费 金额
  8. L3 string `gorm:"column:l3" json:"l3" form:"l3"` //桥,闸通行费 税额
  9. L4 int `gorm:"column:l4" json:"l4" form:"l4"` //国内旅客运输服务 份数
  10. L5 string `gorm:"column:l5" json:"l5" form:"l5"` //国内旅客运输服务 金额
  11. L6 string `gorm:"column:l6" json:"l6" form:"l6"` //国内旅客运输服务 税额
  12. L7 string `gorm:"column:l7" json:"l7" form:"l7"` //尚未抵扣... 税额
  13. L8 string `gorm:"column:l8" json:"l8" form:"l8"` //固定资产... 税额
  14. }