13 lines
242 B
Go
13 lines
242 B
Go
|
|
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()
|
||
|
|
}
|