|
|
@ -11,6 +11,14 @@ import (
|
|
|
|
type sku struct {
|
|
|
|
type sku struct {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
|
|
|
SkuOrderTypePrice = 1 // 价格排序
|
|
|
|
|
|
|
|
SkuOrderTypeDiscount = 2 // 价格折扣
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SkuOrderSortUp = 1 // 升序
|
|
|
|
|
|
|
|
SkuOrderSortDown = 2 // 降序
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type SkuSearch struct {
|
|
|
|
type SkuSearch struct {
|
|
|
|
Status uint // 1=上架 2=下架
|
|
|
|
Status uint // 1=上架 2=下架
|
|
|
|
SkuName string // 商品名称
|
|
|
|
SkuName string // 商品名称
|
|
|
@ -87,7 +95,15 @@ type SkuEsSearch struct {
|
|
|
|
MinDiscount decimal.Decimal // 最低折扣
|
|
|
|
MinDiscount decimal.Decimal // 最低折扣
|
|
|
|
MaxDiscount decimal.Decimal // 最高折扣
|
|
|
|
MaxDiscount decimal.Decimal // 最高折扣
|
|
|
|
Expand []map[string]interface{} // 拓展查询
|
|
|
|
Expand []map[string]interface{} // 拓展查询
|
|
|
|
CustomerSearch CustomerSearch // 客户筛选条件
|
|
|
|
CustomerSearch string // 客户系统搜索参数
|
|
|
|
|
|
|
|
MinGuidePrice decimal.Decimal // 市场参考价
|
|
|
|
|
|
|
|
MaxGuidePrice decimal.Decimal // 市场参考价
|
|
|
|
|
|
|
|
Source uint // 所属供应商
|
|
|
|
|
|
|
|
ThirdCategoryIds []uint // 三级分类Ids
|
|
|
|
|
|
|
|
TagIds []uint // 标签Ids
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
OrderType uint // 排序类型
|
|
|
|
|
|
|
|
OrderSort uint // 排序顺序
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type CustomerSearch struct {
|
|
|
|
type CustomerSearch struct {
|
|
|
|