首页>代码>spring boot+layui开发极简物业后台管理系统>/springboot-pms/src/main/java/com/simon/springbootpms/controller/ComplaintTypeController.java
package com.simon.springbootpms.controller; import com.baomidou.mybatisplus.core.metadata.IPage; import com.simon.springbootpms.model.ComplaintType; import com.simon.springbootpms.service.IComplaintTypeService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiOperation; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; import java.util.List; /** * @author Simon */ @Api(tags = {""}) @RestController @RequestMapping("/complainttype") public class ComplaintTypeController { private Logger log = LoggerFactory.getLogger(getClass()); @Resource private IComplaintTypeService complaintTypeService; @RequestMapping("/queryAll") public List<ComplaintType> queryAll() { return complaintTypeService.queryType(); } @ApiOperation(value = "新增") @PostMapping() public int add(@RequestBody ComplaintType complaintType) { return complaintTypeService.add(complaintType); } @ApiOperation(value = "删除") @DeleteMapping("{id}") public int delete(@PathVariable("id") Long id) { return complaintTypeService.delete(id); } @ApiOperation(value = "更新") @PutMapping() public int update(@RequestBody ComplaintType complaintType) { return complaintTypeService.updateData(complaintType); } @ApiOperation(value = "查询分页数据") @ApiImplicitParams({ @ApiImplicitParam(name = "page", value = "页码"), @ApiImplicitParam(name = "pageCount", value = "每页条数") }) @GetMapping() public IPage<ComplaintType> findListByPage(@RequestParam Integer page, @RequestParam Integer pageCount) { return complaintTypeService.findListByPage(page, pageCount); } @ApiOperation(value = "id查询") @GetMapping("{id}") public ComplaintType findById(@PathVariable Long id) { return complaintTypeService.findById(id); } }
最近下载更多
zolscy LV24
11月27日
计科一班 LV7
6月19日
TY0165 LV20
6月16日
1941549176 LV4
5月10日
ma406805131 LV16
5月7日
YhXyHx523 LV6
4月13日
wanglinddad LV55
3月31日
微信网友_6927932988952576 LV12
3月30日
eagerwujin LV4
3月2日
微信网友_6888487558615040 LV6
3月1日
最近浏览更多
zolscy LV24
11月26日
citybird LV4
11月18日
微信网友_6779541724286976
11月15日
暂无贡献等级
withyouatdusk LV2
10月20日
Peny_ZH LV5
9月21日
17558420274 LV16
9月15日
yimaoermao LV1
9月14日
java小书童 LV18
9月2日
xiao小果 LV13
8月29日
cyd yyds LV2
8月5日