You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
288 B
Go

package model
import "gorm.io/gorm"
type SaleAddress struct {
gorm.Model
Address string `json:"address" gorm:"address"`
ParentName string `json:"parent_name" gorm:"parent_name"`
Level int `json:"level" gorm:"level"`
StoreID string `json:"store_id" gorm:"store_id"`
}