| | |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | |
| | | * @param dockingResultVO |
| | | * @return 返回存储是否成功信息 |
| | | */ |
| | | @GetMapping(RETURNGROUPCODE) |
| | | public R getApplyGroupCode( @RequestParam("dockingResultVO") DockingReturnStoreVO dockingResultVO); |
| | | @PostMapping(RETURNGROUPCODE) |
| | | public R getApplyGroupCode( @RequestBody DockingReturnStoreVO dockingResultVO); |
| | | |
| | | /*** |
| | | * 主数据模型视图发布 |