| | |
| | | package com.iailab.module.data.ind.item.controller; |
| | | |
| | | 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.data.ind.item.entity.IndItemEntity; |
| | | import com.iailab.module.data.ind.item.service.IndItemService; |
| | | import com.iailab.module.data.ind.item.vo.IndItemPageReqVO; |
| | | import com.iailab.module.data.ind.item.vo.IndItemRespVO; |
| | | import com.iailab.module.data.ind.item.vo.IndItemSaveReqVO; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import io.swagger.v3.oas.annotations.Parameter; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | 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.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.validation.Valid; |
| | | |
| | | import static com.iailab.framework.common.pojo.CommonResult.success; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | | * @Description |
| | | * @createTime 2024年09月11日 |
| | | */ |
| | | @Tag(name = "数据平台 - 指标定义") |
| | | @Tag(name = "数据平台 - 指标项") |
| | | @RestController |
| | | @RequestMapping("/data/ind-item") |
| | | @Validated |
| | | public class IndItemController { |
| | | @Autowired |
| | | private IndItemService indItemService; |
| | | |
| | | @GetMapping("/page") |
| | | @Operation(summary = "获取指标项列表", description = "用于【指标项】界面") |
| | | @PreAuthorize("@ss.hasPermission('data:ind-item:query')") |
| | | public CommonResult<PageResult<IndItemRespVO>> page(IndItemPageReqVO reqVO) { |
| | | PageResult<IndItemEntity> page = indItemService.page(reqVO); |
| | | return success(BeanUtils.toBean(page, IndItemRespVO.class)); |
| | | } |
| | | |
| | | @PostMapping("/create") |
| | | @Operation(summary = "创建指标项") |
| | | @PreAuthorize("@ss.hasPermission('data:ind-item:create')") |
| | | public CommonResult<Boolean> create(@Valid @RequestBody IndItemSaveReqVO createReqVO) { |
| | | indItemService.create(createReqVO); |
| | | return success(true); |
| | | } |
| | | |
| | | @PutMapping("/update") |
| | | @Operation(summary = "修改指标项") |
| | | @PreAuthorize("@ss.hasPermission('data:ind-item:update')") |
| | | public CommonResult<Boolean> update(@Valid @RequestBody IndItemSaveReqVO updateReqVO) { |
| | | indItemService.update(updateReqVO); |
| | | return success(true); |
| | | } |
| | | |
| | | @DeleteMapping("/delete") |
| | | @Operation(summary = "删除指标项") |
| | | @Parameter(name = "id", description = "指标项编号", required= true, example = "1024") |
| | | @PreAuthorize("@ss.hasPermission('data:ind-item:delete')") |
| | | public CommonResult<Boolean> delete(@RequestParam("id") String id) { |
| | | indItemService.delete(id); |
| | | return success(true); |
| | | } |
| | | |
| | | @GetMapping("/get") |
| | | @Operation(summary = "获取指标项信息") |
| | | @PreAuthorize("@ss.hasPermission('system:ind-item:query')") |
| | | public CommonResult<IndItemRespVO> get(String id) { |
| | | IndItemEntity entity = indItemService.get(id); |
| | | return success(BeanUtils.toBean(entity, IndItemRespVO.class)); |
| | | } |
| | | } |