| | |
| | | package com.iailab.module.model.mcs.pre.controller.admin; |
| | | |
| | | import com.baomidou.dynamic.datasource.annotation.DSTransactional; |
| | | import com.iailab.framework.common.pojo.CommonResult; |
| | | import com.iailab.framework.common.pojo.PageResult; |
| | | import com.iailab.framework.common.util.object.BeanUtils; |
| | | import com.iailab.module.model.mcs.pre.entity.DmModuleEntity; |
| | | import com.iailab.module.model.mcs.pre.entity.MmResultTableEntity; |
| | | import com.iailab.module.model.mcs.pre.service.MmResultTableService; |
| | | import com.iailab.module.model.mcs.pre.vo.MmItemTypeRespVO; |
| | | import com.iailab.module.model.mcs.pre.vo.MmResultTablePageReqVO; |
| | | import com.iailab.module.model.mcs.pre.vo.MmResultTableRespVO; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.validation.Valid; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import static com.iailab.framework.common.pojo.CommonResult.error; |
| | | import static com.iailab.framework.common.pojo.CommonResult.success; |
| | |
| | | */ |
| | | @GetMapping("/page") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-result:query')") |
| | | public CommonResult<PageResult<MmItemTypeRespVO>> page(@Validated MmResultTablePageReqVO reqVO) { |
| | | public CommonResult<PageResult<MmResultTableRespVO>> page(@Validated MmResultTablePageReqVO reqVO) { |
| | | PageResult<MmResultTableEntity> page = mmResultTableService.page(reqVO); |
| | | |
| | | return success(BeanUtils.toBean(page, MmItemTypeRespVO.class)); |
| | | return success(BeanUtils.toBean(page, MmResultTableRespVO.class)); |
| | | } |
| | | |
| | | |
| | | @GetMapping("/list") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-result:query')") |
| | | public CommonResult<List<MmResultTableEntity>> list(@Valid @RequestParam Map<String, Object> params) { |
| | | List<MmResultTableEntity> list = mmResultTableService.list(params); |
| | | return success(list); |
| | | } |
| | | |
| | | @GetMapping("/get/{id}") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-result:query')") |
| | | public CommonResult<MmResultTableEntity> info(@PathVariable("id") String id){ |
| | | MmResultTableEntity resultTable = mmResultTableService.selectById(id); |
| | | MmResultTableEntity resultTable = mmResultTableService.info(id); |
| | | |
| | | return success(resultTable); |
| | | } |
| | |
| | | */ |
| | | @PostMapping("/create") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-result:create')") |
| | | @DSTransactional(rollbackFor= Exception.class) |
| | | public CommonResult<Boolean> save(@RequestBody MmResultTableEntity resultTable){ |
| | | int count = mmResultTableService.check(resultTable); |
| | | if (count > 0) { |
| | |
| | | */ |
| | | @PutMapping("/update") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-result:update')") |
| | | @DSTransactional(rollbackFor= Exception.class) |
| | | public CommonResult<Boolean> update(@RequestBody MmResultTableEntity resultTable){ |
| | | int count = mmResultTableService.check(resultTable); |
| | | if (count > 0) { |
| | |
| | | */ |
| | | @DeleteMapping("/delete") |
| | | @PreAuthorize("@ss.hasPermission('model:pre-result:delete')") |
| | | @DSTransactional(rollbackFor= Exception.class) |
| | | public CommonResult<Boolean> delete(@RequestParam("id") String id) { |
| | | mmResultTableService.deleteBatch(new String[]{id}); |
| | | return success(true); |