package com.rongwei.controller; import com.rongwei.bscommon.sys.service.SynchronizationDataService; import com.rongwei.rwcommon.base.R; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PostMapping; import java.util.Map; /** * @author :sc * @since :2024/12/2 */ @Controller("/synchronization") public class SynchronizationDataController { @Autowired private SynchronizationDataService synchronizationDataService; /** * 5.7.23设计变更清单新增/更新接口 */ @PostMapping("/batchPush/KC123") public R batchPushKC123(Map req){ return synchronizationDataService.batchPushKC123(req); } }