|
@@ -9,6 +9,9 @@ import com.sooka.sponest.dataexchange.remoteapi.fallback.center.event.RemoteEven
|
|
|
import com.sooka.sponest.dataexchange.remoteapi.service.ModulesServiceNameContants;
|
|
|
import com.sooka.sponest.dataexchange.sendChange.domian.CenterdataTKeyProjects;
|
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
|
+import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.Mapping;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
|
import java.util.List;
|
|
@@ -23,13 +26,21 @@ import java.util.Map;
|
|
|
public interface RemoteDataBaseService {
|
|
|
|
|
|
/**
|
|
|
- * 重点工程
|
|
|
+ * 重点工程接收项目信息
|
|
|
* @param list
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping("/projects/receivedMessage")
|
|
|
public R<?> receivedMessage(List<CenterdataTKeyProjects> list);
|
|
|
|
|
|
+ /**
|
|
|
+ * 重点工程删除项目信息
|
|
|
+ * @param projectIds
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping("/projects/deleteProject")
|
|
|
+ public R<?> deleteProject(String[] projectIds);
|
|
|
+
|
|
|
@PostMapping("/record/insertEnforceLawInfoByList")
|
|
|
public R<?> insertEnforceLawInfoByList(JSONArray jsonArray);
|
|
|
|