package com.gkhy.safePlatform.targetDuty.controller;
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.gkhy.safePlatform.targetDuty.entity.TargetType;
|
import com.gkhy.safePlatform.targetDuty.service.TargetTypeService;
|
import org.springframework.web.bind.annotation.*;
|
import com.gkhy.safePlatform.commons.query.PageQuery;
|
import com.gkhy.safePlatform.commons.utils.PageUtils;
|
import com.gkhy.safePlatform.commons.vo.ResultVO;
|
import com.gkhy.safePlatform.commons.enums.ResultCodes;
|
import com.gkhy.safePlatform.targetDuty.model.dto.req.TargetTypeQueryCriteria;
|
|
import java.util.ArrayList;
|
import java.util.Arrays;
|
import java.util.stream.Collectors;
|
import javax.annotation.Resource;
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 目标分类(TargetType)表控制层
|
*
|
* @author xurui
|
* @since 2022-08-17 10:20:01
|
*/
|
@RestController
|
@RequestMapping("targetType")
|
public class TargetTypeController {
|
/**
|
* 服务对象
|
*/
|
@Resource
|
private TargetTypeService targetTypeService;
|
|
/**
|
* 分页查询所有数据
|
*
|
* @param pageQuery 查询实体
|
* @return 所有数据
|
*/
|
@PostMapping(value = "/page/list")
|
public ResultVO selectAll(@RequestBody PageQuery<TargetTypeQueryCriteria> pageQuery){
|
PageUtils.checkCheck(pageQuery);
|
return this.targetTypeService.queryAll(pageQuery);
|
}
|
|
|
|
/**
|
* 查询所有数据
|
*
|
* @param criteria 查询实体
|
* @return 所有数据
|
*/
|
@PostMapping(value = "/page/listAll")
|
public ResultVO listAll(@RequestBody TargetTypeQueryCriteria criteria){
|
return new ResultVO<>(ResultCodes.OK,this.targetTypeService.queryAll(criteria));
|
}
|
|
/**
|
* 通过主键查询单条数据
|
*
|
* @param id 主键
|
* @return 单条数据
|
*/
|
@GetMapping(value = "/selectOne/{id}")
|
public ResultVO selectOne(@PathVariable Serializable id) {
|
return new ResultVO<>(ResultCodes.OK,this.targetTypeService.getById(id));
|
}
|
|
/**
|
* 新增或者修改数据
|
*
|
* @param targetType 实体对象
|
* @return 修改结果
|
*/
|
@PostMapping(value = "/addOrUpdate")
|
public ResultVO update(@RequestBody TargetType targetType) {
|
if (targetType.getId() == null) {
|
return new ResultVO<>(ResultCodes.OK,targetTypeService.save(targetType));
|
} else {
|
targetTypeService.update(targetType,new UpdateWrapper<TargetType>().eq("id",targetType.getId()));
|
return new ResultVO<>(ResultCodes.OK);
|
}
|
}
|
|
/**
|
* 删除数据
|
*
|
* @param ids 主键结合
|
* @return 删除结果
|
*/
|
@RequestMapping(value = "/delete",method = RequestMethod.POST)
|
public ResultVO delete(@RequestBody Long[] ids) {
|
if(ids == null){
|
return new ResultVO<>(ResultCodes.CLIENT_PARAM_ILLEGAL);
|
}
|
List<Long> idList = Arrays.asList(ids);
|
|
List<TargetType> delList = new ArrayList<>();
|
idList.forEach(f->{
|
TargetType info = new TargetType();
|
info.setDelFlag(1);
|
info.setId(f);
|
delList.add(info);
|
});
|
this.targetTypeService.updateBatchById(delList);
|
return new ResultVO<>(ResultCodes.OK);
|
}
|
}
|