123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- package com.yunzhi.demo.controller;
-
- import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.yunzhi.demo.common.BaseController;
- import com.yunzhi.demo.common.ResponseBean;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import io.swagger.annotations.ApiParam;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.PathVariable;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- import org.springframework.web.bind.annotation.RequestParam;
- import com.yunzhi.demo.service.ITaTestLogService;
- import com.yunzhi.demo.entity.TaTestLog;
- import org.springframework.web.bind.annotation.RestController;
-
- /**
- * <p>
- * 体检记录 前端控制器
- * </p>
- *
- * @author yansen
- * @since 2021-04-15
- */
-
- @Api(tags = "体检记录")
- @RestController
- @RequestMapping("/")
- public class TaTestLogController extends BaseController {
-
- private final Logger logger = LoggerFactory.getLogger(TaTestLogController.class);
-
- @Autowired
- public ITaTestLogService iTaTestLogService;
-
-
- /**
- * 分页查询列表
- * @param pageNum
- * @param pageSize
- * @return
- */
- @RequestMapping(value="/taTestLog",method= RequestMethod.GET)
- @ApiOperation(value="列表", notes = "列表", httpMethod = "GET", response = ResponseBean.class)
- public ResponseBean taTestLogList(@ApiParam("页码") @RequestParam(value ="pageNum",defaultValue = "1") Integer pageNum,
- @ApiParam("单页数据量") @RequestParam(value ="pageSize",defaultValue = "10") Integer pageSize) throws Exception{
-
- IPage<TaTestLog> pg = new Page<>(pageNum, pageSize);
- QueryWrapper<TaTestLog> queryWrapper = new QueryWrapper<>();
- queryWrapper.orderByDesc("create_date");
-
- IPage<TaTestLog> result = iTaTestLogService.page(pg, queryWrapper);
- return ResponseBean.success(result);
- }
-
- /**
- * 保存对象
- * @param taTestLog 实体对象
- * @return
- */
- @RequestMapping(value="/taTestLog",method= RequestMethod.POST)
- @ApiOperation(value="保存", notes = "保存", httpMethod = "POST", response = ResponseBean.class)
- public ResponseBean taTestLogAdd(@ApiParam("保存内容") @RequestBody TaTestLog taTestLog) throws Exception{
-
- if (iTaTestLogService.save(taTestLog)){
- return ResponseBean.success(taTestLog);
- }else {
- return ResponseBean.error("保存失败, 请重试", ResponseBean.ERROR_UNAVAILABLE);
- }
- }
-
- /**
- * 根据id删除对象
- * @param id 实体ID
- */
- @RequestMapping(value="/taTestLog/{id}", method= RequestMethod.DELETE)
- @ApiOperation(value="删除", notes = "删除", httpMethod = "DELETE", response = ResponseBean.class)
- public ResponseBean taTestLogDelete(@ApiParam("对象ID") @PathVariable Integer id) throws Exception{
- if(iTaTestLogService.removeById(id)){
- return ResponseBean.success("success");
- }else {
- return ResponseBean.error("删除失败, 请重试", ResponseBean.ERROR_UNAVAILABLE);
- }
- }
-
- /**
- * 修改对象
- * @param id 实体ID
- * @param taTestLog 实体对象
- * @return
- */
- @RequestMapping(value="/taTestLog/{id}",method= RequestMethod.PUT)
- @ApiOperation(value="更新", notes = "更新", httpMethod = "PUT", response = ResponseBean.class)
- public ResponseBean taTestLogUpdate(@ApiParam("对象ID") @PathVariable Integer id,
- @ApiParam("更新内容") @RequestBody TaTestLog taTestLog) throws Exception{
-
- if (iTaTestLogService.updateById(taTestLog)){
- return ResponseBean.success(iTaTestLogService.getById(id));
- }else {
- return ResponseBean.error("修改失败, 请重试", ResponseBean.ERROR_UNAVAILABLE);
- }
- }
-
- /**
- * 根据id查询对象
- * @param id 实体ID
- */
- @RequestMapping(value="/taTestLog/{id}",method= RequestMethod.GET)
- @ApiOperation(value="详情", notes = "详情", httpMethod = "GET", response = ResponseBean.class)
- public ResponseBean taTestLogGet(@ApiParam("对象ID") @PathVariable Integer id) throws Exception{
- return ResponseBean.success(iTaTestLogService.getById(id));
- }
- }
|