package org.jeecg.modules.base.controller;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import io.swagger.annotations.ApiOperation;
|
import lombok.extern.slf4j.Slf4j;
|
import org.jeecg.common.api.vo.Result;
|
import org.jeecg.common.aspect.annotation.AutoLog;
|
import org.jeecg.common.system.base.controller.JeecgController;
|
import org.jeecg.common.system.query.QueryGenerator;
|
import org.jeecg.common.util.oConvertUtils;
|
import org.jeecg.modules.base.entity.Unit;
|
import org.jeecg.modules.base.entity.UnitConversion;
|
import org.jeecg.modules.base.service.IUnitConversionService;
|
import org.jeecg.modules.base.service.IUnitService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.servlet.ModelAndView;
|
|
import javax.annotation.Resource;
|
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletResponse;
|
import java.util.ArrayList;
|
import java.util.Arrays;
|
import java.util.List;
|
|
/**
|
* @Title: Controller
|
* @Description: 计量单位表 前端控制器
|
* @Author: cuijian
|
* @Date: 2022-10-26
|
* @Version: V1.0
|
*/
|
@RestController
|
@RequestMapping("/base/unit")
|
@Slf4j
|
public class UnitController extends JeecgController<Unit, IUnitService> {
|
|
@Autowired
|
private IUnitService unitService;
|
|
|
/**
|
* 分页列表查询
|
*
|
* @param
|
* @param pageNo
|
* @param pageSize
|
* @param req
|
* @return
|
*/
|
|
@ApiOperation(value = "计量单位-分页列表查询", notes = "计量单位-分页列表查询")
|
@GetMapping(value = "/list")
|
public Result<IPage<Unit>> queryPageList(Unit unit,
|
@RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
|
@RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
|
HttpServletRequest req) {
|
QueryWrapper<Unit> queryWrapper = QueryGenerator.initQueryWrapper(unit, req.getParameterMap());
|
Page<Unit> page = new Page<Unit>(pageNo, pageSize);
|
IPage<Unit> pageList = unitService.page(page, queryWrapper);
|
return Result.OK(pageList);
|
}
|
|
/**
|
* 添加
|
*
|
* @param unit
|
* @return
|
*/
|
@AutoLog(value = "计量单位-添加")
|
@ApiOperation(value = "计量单位-添加", notes = "计量单位-添加")
|
|
@PostMapping(value = "/add")
|
public Result<String> add(@RequestBody Unit unit) {
|
unitService.save(unit);
|
return Result.OK("添加成功!");
|
}
|
|
/**
|
* 编辑
|
*
|
* @param unit
|
* @return
|
*/
|
@AutoLog(value = "计量单位-编辑")
|
@ApiOperation(value = "计量单位-编辑", notes = "计量单位-编辑")
|
@RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST})
|
public Result<String> edit(@RequestBody Unit unit) {
|
unitService.updateById(unit);
|
return Result.OK("编辑成功!");
|
}
|
|
/**
|
* 通过id删除
|
*
|
* @param id
|
* @return
|
*/
|
@AutoLog(value = "计量单位-通过id删除")
|
@ApiOperation(value = "计量单位-通过id删除", notes = "计量单位-通过id删除")
|
@DeleteMapping(value = "/delete")
|
public Result<String> delete(@RequestParam(name = "id", required = true) String id) {
|
unitService.removeById(id);
|
return Result.OK("删除成功!");
|
}
|
|
/**
|
* 批量删除
|
*
|
* @param ids
|
* @return
|
*/
|
@AutoLog(value = "计量单位-批量删除")
|
@ApiOperation(value = "计量单位-批量删除", notes = "计量单位-批量删除")
|
@DeleteMapping(value = "/deleteBatch")
|
public Result<String> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
|
List<String> stringList = Arrays.asList(ids.split(","));
|
unitService.removeBatchByIds(stringList);
|
return Result.OK("批量删除成功!");
|
}
|
|
/**
|
* 通过id查询
|
*
|
* @param id
|
* @return
|
*/
|
//@AutoLog(value = "精度参数-通过id查询")
|
@ApiOperation(value = "计量单位-通过id查询", notes = "计量单位-通过id查询")
|
@GetMapping(value = "/queryById")
|
public Result<Unit> queryById(@RequestParam(name = "id", required = true) String id) {
|
Unit unit = unitService.getById(id);
|
if (unit == null) {
|
return Result.error("未找到对应数据");
|
}
|
return Result.OK(unit);
|
}
|
|
/**
|
* 导出excel
|
*
|
* @param request
|
* @param unit
|
*/
|
|
@RequestMapping(value = "/exportXls")
|
public ModelAndView exportXls(HttpServletRequest request, Unit unit) {
|
return super.exportXls(request, unit, Unit.class, "计量单位");
|
}
|
|
/**
|
* 通过excel导入数据
|
*
|
* @param request
|
* @param response
|
* @return
|
*/
|
@RequestMapping(value = "/importExcel", method = RequestMethod.POST)
|
public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
return super.importExcel(request, response, Unit.class);
|
}
|
|
|
}
|