🐛 fix bug

This commit is contained in:
2023-04-27 18:02:38 +08:00
parent 1212e999cc
commit 27daf68736
3 changed files with 14 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ import "Lee-WineList/common/types"
type Material struct {
types.BaseDbModel
Name string `gorm:"column:name;type:varchar(255);comment:材料名;NOT NULL" json:"name"`
ML string `gorm:"column:ml;type:int(11) unsigned;comment:毫升" json:"ml"`
ML string `gorm:"column:ml;type:varchar(20) unsigned;comment:毫升" json:"ml"`
OtherUnit string `gorm:"column:other_unit;type:varchar(255);comment:其他单位" json:"other_unit"`
WindId int `gorm:"column:wine_id;type:int(11) unsigned;comment:酒ID;NOT NULL" json:"wine_id"`
}