| | |
| | | import com.iailab.module.model.mcs.pre.vo.CountItemtypeVO; |
| | | import com.iailab.module.model.mcs.pre.vo.MmPredictItemRespVO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | |
| | | * @date 2021年04月26日 14:42 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/pre/predict-item") |
| | | @RequestMapping("/model/pre/predict-item") |
| | | public class MmPredictItemController { |
| | | |
| | | @Autowired |
| | |
| | | * 预测项列表 |
| | | */ |
| | | @GetMapping("/page") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-predict:query')") |
| | | public CommonResult<PageResult<MmPredictItemRespVO>> page(@RequestParam Map<String, Object> params) { |
| | | PageResult<MmPredictItemRespVO> page = mmPredictItemService.getPageList(params); |
| | | return success(page); |
| | |
| | | * 预测项信息 |
| | | */ |
| | | @GetMapping("/get/{id}") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-predict:query')") |
| | | public CommonResult<MmPredictItemDTO> info(@PathVariable("id") String id, @RequestParam Map<String, Object> params){ |
| | | MmPredictItemDTO predictItem = mmPredictItemService.getDetailById(id, params); |
| | | return success(predictItem); |
| | |
| | | * 保存预测项 |
| | | */ |
| | | @PostMapping("/create") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-predict:create')") |
| | | public CommonResult<Boolean> save(@RequestBody MmPredictItemDTO mmPredictItemDto){ |
| | | int count = mmPredictItemService.check(mmPredictItemDto.getMmPredictItem()); |
| | | if (count > 0) { |
| | |
| | | * 修改预测项 |
| | | */ |
| | | @PutMapping("/update") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-predict:update')") |
| | | public CommonResult<Boolean> update(@RequestBody MmPredictItemDTO mmPredictItemDto){ |
| | | int count = mmPredictItemService.check(mmPredictItemDto.getMmPredictItem()); |
| | | if (count > 0) { |
| | |
| | | * 删除预测项 |
| | | */ |
| | | @DeleteMapping("/delete") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-predict:delete')") |
| | | public CommonResult<Boolean> delete(@RequestParam("id") String id) { |
| | | mmPredictItemService.deleteBatch(new String[]{id}); |
| | | return success(true); |