1
23 小时以前 f2fb04ef57e6b29eed57a1ca5c9a7eb1037abd74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.vincent.rsf.openApi.controller;
 
import com.vincent.rsf.openApi.entity.dto.CommonResponse;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
@Api("任务中转站")
@Slf4j
@RequestMapping("/mission")
public class MissionTransferStationController {
 
    @ApiOperation("任务总控")
    @PostMapping("/task/master/control")
    public CommonResponse missionMasterControl(@RequestBody Object objParams) {
        //判断需要下发系统
        //判断下发方式
        //返回结果
        return CommonResponse.ok();
    }
}