Authored by Lixiaodi

删除数据源绑定

@@ -16,8 +16,6 @@ public interface ProductService { @@ -16,8 +16,6 @@ public interface ProductService {
16 16
17 void createSkup(StoragePriceBo skupBo); 17 void createSkup(StoragePriceBo skupBo);
18 18
19 - @Transactional  
20 - @Database(ForceMaster = true, DataSource = "ufo_product")  
21 void saleSkup(Integer productId, Integer skup); 19 void saleSkup(Integer productId, Integer skup);
22 20
23 void cancelSaleSkup(Integer skup, Integer status); 21 void cancelSaleSkup(Integer skup, Integer status);
@@ -276,8 +276,6 @@ public class ProductServiceImpl implements ProductService{ @@ -276,8 +276,6 @@ public class ProductServiceImpl implements ProductService{
276 } 276 }
277 277
278 @Override 278 @Override
279 - @Transactional  
280 - @Database(ForceMaster = true, DataSource = "ufo_product")  
281 public void saleSkup(Integer productId, Integer skup) { 279 public void saleSkup(Integer productId, Integer skup) {
282 checkParamValid(productId, skup); 280 checkParamValid(productId, skup);
283 checkProductStatus(productId); 281 checkProductStatus(productId);