12345678910111213141516171819 |
- package sb
- type GsSmallVatFb6 struct {
- GsBaseModel
- GsMainId uint `gorm:"column:gs_main_id" json:"gsMainId" form:"gsMainId"`
- AddFlag bool `gorm:"column:add_flag" json:"addFlag" form:"addFlag"`
- Id int `gorm:"column:id" json:"id" form:"id"`
- T1 string `gorm:"column:t1" json:"t1" form:"t1"`
- T2 string `gorm:"column:t2" json:"t2" form:"t2"`
- T3 string `gorm:"column:t3" json:"t3" form:"t3"`
- T4 string `gorm:"column:t4" json:"t4" form:"t4"`
- T5 string `gorm:"column:t5" json:"t5" form:"t5"`
- T6 string `gorm:"column:t6" json:"t6" form:"t6"`
- T7 string `gorm:"column:t7" json:"t7" form:"t7"`
- T8 string `gorm:"column:t8" json:"t8" form:"t8"`
- T9 string `gorm:"column:t9" json:"t9" form:"t9"`
- }
|