controller.java.vm 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * Neither the name of the dreamlu.net developer nor the names of its
  13. * contributors may be used to endorse or promote products derived from
  14. * this software without specific prior written permission.
  15. * Author: Chill 庄骞 (smallchill@163.com)
  16. */
  17. package $!{package.Controller};
  18. import io.swagger.annotations.Api;
  19. import io.swagger.annotations.ApiOperation;
  20. import io.swagger.annotations.ApiParam;
  21. import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
  22. import lombok.AllArgsConstructor;
  23. import javax.validation.Valid;
  24. import org.springblade.core.mp.support.Condition;
  25. import org.springblade.core.mp.support.Query;
  26. import org.springblade.core.tool.api.R;
  27. import org.springblade.core.tool.utils.Func;
  28. import org.springframework.web.bind.annotation.*;
  29. #if($!{superEntityClass})
  30. import org.springframework.web.bind.annotation.RequestParam;
  31. #end
  32. import com.baomidou.mybatisplus.core.metadata.IPage;
  33. import $!{package.Entity}.$!{entity};
  34. #set($voPackage=$package.Entity.replace("entity","vo"))
  35. import $!{voPackage}.$!{entity}VO;
  36. #set($wrapperPackage=$package.Entity.replace("entity","wrapper"))
  37. #if($!{cfg.hasWrapper})
  38. import $!{wrapperPackage}.$!{entity}Wrapper;
  39. #end
  40. import $!{package.Service}.$!{table.serviceName};
  41. #if($!{superControllerClassPackage})
  42. import $!{superControllerClassPackage};
  43. #end
  44. #if(!$!{superEntityClass})
  45. #end
  46. /**
  47. * $!{table.comment} 控制器
  48. *
  49. * @author $!{author}
  50. * @since $!{date}
  51. */
  52. @RestController
  53. @AllArgsConstructor
  54. @RequestMapping("$!{cfg.serviceName}/$!{cfg.entityKey}")
  55. @Api(value = "$!{table.comment}", tags = "$!{table.comment}接口")
  56. #if($!{superControllerClass})
  57. public class $!{table.controllerName} extends $!{superControllerClass} {
  58. #else
  59. public class $!{table.controllerName} {
  60. #end
  61. private final $!{table.serviceName} $!{table.entityPath}Service;
  62. #if($!{cfg.hasWrapper})
  63. /**
  64. * 详情
  65. */
  66. @GetMapping("/detail")
  67. @ApiOperationSupport(order = 1)
  68. @ApiOperation(value = "详情", notes = "传入$!{table.entityPath}")
  69. public R<$!{entity}VO> detail($!{entity} $!{table.entityPath}) {
  70. $!{entity} detail = $!{table.entityPath}Service.getOne(Condition.getQueryWrapper($!{table.entityPath}));
  71. return R.data($!{entity}Wrapper.build().entityVO(detail));
  72. }
  73. /**
  74. * 分页 $!{table.comment}
  75. */
  76. @GetMapping("/list")
  77. @ApiOperationSupport(order = 2)
  78. @ApiOperation(value = "分页", notes = "传入$!{table.entityPath}")
  79. public R<IPage<$!{entity}VO>> list($!{entity} $!{table.entityPath}, Query query) {
  80. IPage<$!{entity}> pages = $!{table.entityPath}Service.page(Condition.getPage(query), Condition.getQueryWrapper($!{table.entityPath}));
  81. return R.data($!{entity}Wrapper.build().pageVO(pages));
  82. }
  83. #else
  84. /**
  85. * 详情
  86. */
  87. @GetMapping("/detail")
  88. @ApiOperationSupport(order = 1)
  89. @ApiOperation(value = "详情", notes = "传入$!{table.entityPath}")
  90. public R<$!{entity}> detail($!{entity} $!{table.entityPath}) {
  91. $!{entity} detail = $!{table.entityPath}Service.getOne(Condition.getQueryWrapper($!{table.entityPath}));
  92. return R.data(detail);
  93. }
  94. /**
  95. * 分页 $!{table.comment}
  96. */
  97. @GetMapping("/list")
  98. @ApiOperationSupport(order = 2)
  99. @ApiOperation(value = "分页", notes = "传入$!{table.entityPath}")
  100. public R<IPage<$!{entity}>> list($!{entity} $!{table.entityPath}, Query query) {
  101. IPage<$!{entity}> pages = $!{table.entityPath}Service.page(Condition.getPage(query), Condition.getQueryWrapper($!{table.entityPath}));
  102. return R.data(pages);
  103. }
  104. #end
  105. /**
  106. * 自定义分页 $!{table.comment}
  107. */
  108. @GetMapping("/page")
  109. @ApiOperationSupport(order = 3)
  110. @ApiOperation(value = "分页", notes = "传入$!{table.entityPath}")
  111. public R<IPage<$!{entity}VO>> page($!{entity}VO $!{table.entityPath}, Query query) {
  112. IPage<$!{entity}VO> pages = $!{table.entityPath}Service.select$!{entity}Page(Condition.getPage(query), $!{table.entityPath});
  113. return R.data(pages);
  114. }
  115. /**
  116. * 新增 $!{table.comment}
  117. */
  118. @PostMapping("/save")
  119. @ApiOperationSupport(order = 4)
  120. @ApiOperation(value = "新增", notes = "传入$!{table.entityPath}")
  121. public R save(@Valid @RequestBody $!{entity} $!{table.entityPath}) {
  122. return R.status($!{table.entityPath}Service.save($!{table.entityPath}));
  123. }
  124. /**
  125. * 修改 $!{table.comment}
  126. */
  127. @PostMapping("/update")
  128. @ApiOperationSupport(order = 5)
  129. @ApiOperation(value = "修改", notes = "传入$!{table.entityPath}")
  130. public R update(@Valid @RequestBody $!{entity} $!{table.entityPath}) {
  131. return R.status($!{table.entityPath}Service.updateById($!{table.entityPath}));
  132. }
  133. /**
  134. * 新增或修改 $!{table.comment}
  135. */
  136. @PostMapping("/submit")
  137. @ApiOperationSupport(order = 6)
  138. @ApiOperation(value = "新增或修改", notes = "传入$!{table.entityPath}")
  139. public R submit(@Valid @RequestBody $!{entity} $!{table.entityPath}) {
  140. return R.status($!{table.entityPath}Service.saveOrUpdate($!{table.entityPath}));
  141. }
  142. #if($!{superEntityClass})
  143. /**
  144. * 删除 $!{table.comment}
  145. */
  146. @PostMapping("/remove")
  147. @ApiOperationSupport(order = 7)
  148. @ApiOperation(value = "逻辑删除", notes = "传入ids")
  149. public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
  150. return R.status($!{table.entityPath}Service.removeByIds(Func.toLongList(ids)));
  151. }
  152. #else
  153. /**
  154. * 删除 $!{table.comment}
  155. */
  156. @PostMapping("/remove")
  157. @ApiOperationSupport(order = 8)
  158. @ApiOperation(value = "删除", notes = "传入ids")
  159. public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
  160. return R.status($!{table.entityPath}Service.removeByIds(Func.toLongList(ids)));
  161. }
  162. #end
  163. }