Files
platform/web/services/product.go

13 lines
242 B
Go
Raw Normal View History

2026-03-18 13:07:06 +08:00
package services
import q "platform/web/queries"
var Product = &productService{}
type productService struct{}
// 获取产品价格
func (s *productService) GetPrice(code string) {
q.ProductSku.Where(q.ProductSku.Code.Eq(code)).Find()
}