@@ -1,4 +1,3 @@
-
#!/usr/bin/env bash
# 定义应用组名
group_admin_name='zhongzheng'
@@ -328,6 +328,15 @@ public class GoodsController extends BaseController {
return toAjax(iGoodsService.goodsBatchCopyTenant(bo) ? 1 : 0);
}
+ /**
+ * 商品批量复制(新机构)
+ */
+ @ApiOperation("商品批量复制(全量)")
+ @PostMapping("/batch/copy/all/tem")
+ public AjaxResult<Void> goodsBatchCopyTenantTem(@RequestBody GoodsBatchCopyTenantBo bo) {
+ return toAjax(iGoodsService.goodsBatchCopyIncrementTenantTwo() ? 1 : 0);
+ }
+
/**
* 商品批量复制(新机构)
*/
@@ -114,6 +114,8 @@ public interface IGoodsService extends IService<Goods> {
boolean goodsBatchCopyTenant(GoodsBatchCopyTenantBo bo);
+ boolean goodsBatchCopyIncrementTenantTwo();
//督学通知e管证
boolean informOldSys(Long userId,Long goodsId,Long orderGoodsId, Long gradeId,Integer type,String content,List<String> dataJson);