feat: sale manager

This commit is contained in:
zzw
2026-08-28 10:49:09 +08:00
parent 97eba7ad48
commit 6f567319be
82 changed files with 4491 additions and 182 deletions
+10
View File
@@ -0,0 +1,10 @@
package dao
type Region struct {
Id uint `gorm:"column:id" json:"id"`
ParentId *uint `gorm:"column:parent_id" json:"parent_id"`
Code string `gorm:"column:code" json:"code"`
Name string `gorm:"column:name" json:"name"`
Level uint8 `gorm:"column:level" json:"level"`
CityCode string `gorm:"column:city_code" json:"city_code"`
}