显示中位价

This commit is contained in:
苏尹岚
2020-01-06 10:46:51 +08:00
parent 6fb43fa553
commit df6a0b1a1c
3 changed files with 11 additions and 11 deletions

View File

@@ -134,7 +134,6 @@ type StoreSkuNameExt struct {
PendingUnitPrice int `json:"pendingUnitPrice"` // 这个是待审核的价格申请
Status int
RealMidUnitPrice int `json:"realMidUnitPrice"`
midUnitPrice int `json:"midUnitPrice"`
}
// GetStoreSkus用
@@ -159,8 +158,9 @@ type StoreSkuExt struct {
BindLastOperator string `orm:"size(32)" json:"lastOperator"` // 最后操作员
BindDeletedAt time.Time `orm:"type(datetime)" json:"deletedAt"`
SubStoreID int `orm:"column(sub_store_id)" json:"subStoreID"`
BindPrice int `json:"price"` // 单位为分不用int64的原因是这里不需要累加
UnitPrice int `json:"unitPrice"` // 这个是一斤的门店商品价放在这里的原因是避免额外增加一张store sku_name表逻辑上要保证同一SKU NAME中的所有SKU这个字段的数据一致
BindPrice int `json:"price"` // 单位为分不用int64的原因是这里不需要累加
UnitPrice int `json:"unitPrice"` // 这个是一斤的门店商品价放在这里的原因是避免额外增加一张store sku_name表逻辑上要保证同一SKU NAME中的所有SKU这个字段的数据一致
RealMidUnitPrice int `json:"realMidUnitPrice"` //真实的该商品的全国中位价
StoreSkuStatus int `json:"storeSkuStatus"`
EbaiID string `orm:"column(ebai_id);index" json:"ebaiID"`