Files
sundynix-go/model/order/stock.go
T
2026-04-28 10:29:02 +08:00

14 lines
209 B
Go

package order
import "sundynix-go/global"
// Stock
type Stock struct {
global.BaseModel
Amount int64 `gorm:"column:amount" json:"amount"` //
}
func (Stock) TableName() string {
return "sundynix_stock"
}