From a6ef8e44270acf00eaba373e42c8cce824f72fde Mon Sep 17 00:00:00 2001 From: gazebo Date: Mon, 5 Aug 2019 15:10:13 +0800 Subject: [PATCH] - ren StoreSkuExt.BindStatus to StoreSkuExt.StoreSkuStatus --- business/jxstore/cms/store_sku.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/business/jxstore/cms/store_sku.go b/business/jxstore/cms/store_sku.go index 6b587a43c..ac6fe8820 100644 --- a/business/jxstore/cms/store_sku.go +++ b/business/jxstore/cms/store_sku.go @@ -51,7 +51,7 @@ type StoreSkuExt struct { SubStoreID int `orm:"column(sub_store_id)" json:"subStoreID"` BindPrice int `json:"price"` // 单位为分,不用int64的原因是这里不需要累加 UnitPrice int `json:"unitPrice"` // 这个是一斤的门店商品价,放在这里的原因是避免额外增加一张store sku_name表,逻辑上要保证同一SKU NAME中的所有SKU这个字段的数据一致 - BindStatus int `json:"storeSkuStatus"` + StoreSkuStatus int `json:"storeSkuStatus"` EbaiID int64 `orm:"column(ebai_id);index" json:"ebaiID"` MtwmID int64 `orm:"column(mtwm_id)" json:"mtwmID"` // 这个也不是必须的,只是为了DAO取数据语句一致