Sfoglia il codice sorgente

顽症报告导出

zhuang 1 anno fa
parent
commit
7b75a483f2

+ 17 - 0
business-common/src/main/java/com/rongwei/bscommon/sys/service/impl/OutSourceServiceImpl.java

@@ -0,0 +1,17 @@
+package com.rongwei.bscommon.sys.service.impl;
+
+import com.rongwei.bscommon.sys.service.OutSourceService;
+import com.rongwei.rwcommon.base.R;
+import lombok.extern.java.Log;
+import org.springframework.stereotype.Service;
+
+import java.util.List;
+
+@Log
+@Service
+public class OutSourceServiceImpl implements OutSourceService {
+    @Override
+    public R batchCopy(List<String> ids) {
+        return null;
+    }
+}

+ 32 - 0
business-server/src/main/java/com/rongwei/bsserver/controller/ZhcxOutSourceController.java

@@ -0,0 +1,32 @@
+package com.rongwei.bsserver.controller;
+
+import com.rongwei.bscommon.sys.service.OutSourceService;
+import com.rongwei.bsentity.vo.SubcontractorUserVo;
+import com.rongwei.rwcommon.base.R;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.List;
+
+/**
+ * @author zhuang
+ * 外协
+ */
+@RestController
+@RequestMapping("/zhcxOutSource")
+public class ZhcxOutSourceController {
+
+    @Autowired
+    private OutSourceService outSourceService;
+    /**
+     * 批量复制新增
+     * @param ids
+     * @return
+     */
+    @RequestMapping("/batchCopy")
+    public R batchCopy(@RequestBody List<String> ids){
+        return outSourceService.batchCopy(ids);
+    }
+}