gs_vat_ncp.go 950 B

1234567891011121314151617181920
  1. package sb
  2. // 投入产出法核定农产品增值税进项税额计算表
  3. type GsVatNcp struct {
  4. GsBaseModel
  5. GsMainId uint `gorm:"column:gs_main_id" json:"gsMainId" form:"gsMainId"`
  6. Type int `gorm:"column:type" json:"type" form:"type"` //序号
  7. Name string `gorm:"column:name" json:"name" form:"name"` //产品名称
  8. HyName string `gorm:"column:hy_name" json:"hyName" form:"hyName"` //耗用农产品名称
  9. L1 string `gorm:"column:l1" json:"l1" form:"l1"`
  10. L2 string `gorm:"column:l2" json:"l2" form:"l2"`
  11. L3 string `gorm:"column:l3" json:"l3" form:"l3"`
  12. L4 string `gorm:"column:l4" json:"l4" form:"l4"`
  13. L5 string `gorm:"column:l5" json:"l5" form:"l5"`
  14. L6 string `gorm:"column:l6" json:"l6" form:"l6"`
  15. L7 string `gorm:"column:l7" json:"l7" form:"l7"`
  16. L8 string `gorm:"column:l8" json:"l8" form:"l8"`
  17. L9 string `gorm:"column:l9" json:"l9" form:"l9"`
  18. }