package com.mes.downglassinfo.controller; import com.mes.downglassinfo.service.DownGlassInfoService; import com.mes.utils.Result; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; 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; /** *
* 前端控制器 *
* * @author zhoush * @since 2024-04-07 */ @RestController @RequestMapping("/downGlassTask") public class DownGlassTaskController { @Autowired DownGlassInfoService downGlassInfoService; @PostMapping("/generateOutGlassTask") @ApiOperation(value = "生成出片任务", notes = "生成出片任务") public Result