新增订单轮询

This commit is contained in:
qiyunfanbo126.com 2024-09-04 15:50:27 +08:00
parent f1d915be38
commit 7549facafa
4 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ type Brand struct {
// 表名
func (m *Brand) TableName() string {
return "Brand"
return "brand"
}
// 私有化防止被外部new

View File

@ -40,7 +40,7 @@ type OrdersProductsList struct {
// 表名
func (m *Orders) TableName() string {
return "Orders"
return "orders"
}
// 私有化防止被外部new

View File

@ -37,7 +37,7 @@ type MilkProductsList struct {
// 表名
func (m *Products) TableName() string {
return "Products"
return "products"
}
// 私有化防止被外部new

View File

@ -23,7 +23,7 @@ type Users struct {
// 表名
func (m *Users) TableName() string {
return "Users"
return "users"
}
// 私有化防止被外部new