@ApiOperation(value = "新增") @RequestMapping("/add") public R add(@RequestBody Building building){ int num= buildingService.add(building); if(num>0){ return R.ok(); }else{ return R.fail("添加失败"); } }
时间: 2024-03-29 07:36:40 浏览: 49
这段代码是用来实现一个建筑物信息的新增接口,使用了Spring框架的注解来定义接口的访问路径和请求方式。其中,@RequestBody注解用来将请求体中的JSON数据绑定到Building对象上,@RequestMapping注解用来映射请求路径。在方法体内部,调用了BuildingService中的add方法,将Building对象添加到数据库中,并根据返回结果来返回相应的响应。如果添加成功,返回状态码200和一个空的响应体;如果添加失败,则返回状态码200和一个响应体包含错误信息。
相关问题
@Controller @RequestMapping(value = "/JzAtlas") @Api(tags = {"建筑--图册--操作接口"}) public class JzAtlasAction { @Resource private JzAtlasService service; @ApiOperation(value = "查询单个项目", notes = "项目主键ID") //@RequestMapping(value = "/findByKey", method = {RequestMethod.GET}, produces = "application/json; charset=UTF-8") @RequestMapping(value = "/findByKey", method = {RequestMethod.GET}) @ResponseBody public Object findByKey(Integer id) { return service.findById(id); } @ApiOperation(value = "保存单个项目信息", notes = "传递数据") @RequestMapping(value = "/save", method = {RequestMethod.POST}) @ResponseBody public Object save(@RequestBody JzAtlas model) { return service.save(model); } @ApiOperation(value = "更新单个项目信息", notes = "传递数据") @RequestMapping(value = "/update", method = {RequestMethod.POST}) @ResponseBody public Object update(@RequestBody JzAtlas model) { return service.update(model); } @ApiOperation(value = "查询所有", notes = "无查询条件") @RequestMapping(value = "/findAllList", method = {RequestMethod.POST}) @ResponseBody public Object findList() { return service.findList(); } @ApiOperation(value = "根据条件查询", notes = "查询参数") @RequestMapping(value = "/findList", method = {RequestMethod.POST}) @ResponseBody public Object findListByQuery(@RequestBody JzAtlasRequest requestModel) { return service.findListByQuery(requestModel); } @ApiOperation(value = "删除单个项目信息", notes = "项目主键ID") @RequestMapping(value = "/delete", method = {RequestMethod.POST}) @ResponseBody public Object delete(Integer id) { return service.delete(id); } }
这是一个Java类,使用了Spring框架的@Controller注解,表示这是一个控制器类。通过@RequestMapping注解指定了处理请求的URL路径为"/JzAtlas"。@Api注解用于生成API文档,其中的tags属性指定了文档中的标签为"建筑--图册--操作接口"。
该类中包含了多个处理请求的方法,使用了不同的请求方法(GET、POST)和URL路径。每个方法都使用了@ResponseBody注解,表示返回的结果将被转换为JSON格式。其中,@ApiOperation注解用于生成API文档中的方法描述。
- findByKey方法:用于根据项目主键ID查询单个项目信息。
- save方法:用于保存单个项目信息,接收一个JzAtlas对象作为参数。
- update方法:用于更新单个项目信息,接收一个JzAtlas对象作为参数。
- findList方法:用于查询所有项目信息。
- findListByQuery方法:根据条件查询项目信息,接收一个JzAtlasRequest对象作为参数。
- delete方法:删除单个项目信息,接收一个项目主键ID作为参数。
其中,@Resource注解用于注入JzAtlasService对象,表示该类依赖于JzAtlasService服务类。
package org.example.finance.controller; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.example.finance.model.Result; import org.example.finance.model.bo.LoginBO; import org.example.finance.model.bo.RegisterBO; import org.example.finance.service.IOrgService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; /** * <p> * 前端控制器 * </p> * * @author Arthur * @since 2021-09-07 */ @Api(value = "组织(公司、银行)相关接口", tags = "组织(公司、银行)相关接口") @RestController @RequestMapping("/finance/org") public class OrgController { @Autowired IOrgService orgService; @ApiOperation(value = "登录接口", notes = "登录接口") @RequestMapping(value = "login", method = RequestMethod.POST) public Result<String> login(@RequestBody LoginBO loginBO) { return orgService.login(loginBO); } @ApiOperation(value = "注册接口", notes = "注册接口") @RequestMapping(value = "register", method = RequestMethod.POST) public Result<String> register(@RequestBody RegisterBO registerBO) { return orgService.register(registerBO); } // @ApiOperation(value = "重新绑定地址接口", notes = "重新绑定地址接口") // @RequestMapping(value = "rebind", method = RequestMethod.GET) // public Result<String> rebind(@RequestParam String username, @RequestParam String address) { // return orgService.rebind(username, address); // } }
这是一个财务管理系统的控制器类,使用了Spring的@RestController和@RequestMapping注解来定义接口路径。该控制器提供了组织(公司、银行)相关的接口,包括登录和注册接口。其中,登录接口使用了@ApiOperation注解来描述接口的作用和说明,接收一个LoginBO对象作为参数,并返回一个Result<String>对象。注册接口也是类似的,接收一个RegisterBO对象作为参数,并返回一个Result<String>对象。同时,还有一个被注释掉的重新绑定地址接口,使用了@RequestParam注解来接收参数。
阅读全文