Skip to content

Commit

Permalink
rename controller
Browse files Browse the repository at this point in the history
  • Loading branch information
niziming committed Jul 12, 2022
1 parent 298d8d9 commit 2a1977b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
@RequestMapping("baseAccount")
@RestController
@Api(tags = "基础账户表")
@Api(tags = "基础-账户表")
public class BaseAccountController extends BaseController {

@Resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
@RequestMapping("baseScenicSpot")
@RestController
@Api(tags = "基础景点")
@Api(tags = "基础-景点")
public class BaseScenicSpotController extends BaseController {

@Resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class BaseUserController extends BaseController {
private IBaseUserService baseUserService;

@GetMapping
@ApiOperation("基础用户page查询")
@ApiOperation("基础-用户page查询")
// @ApiImplicitParams({
// @ApiImplicitParam(name = "page", value = "当前页数", defaultValue = "1"),
// @ApiImplicitParam(name = "size", value = "每页个数", defaultValue = "10"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
@RequestMapping("busComments")
@RestController
@Api(tags = "业务评论表")
@Api(tags = "业务-评论表")
public class BusCommentsController extends BaseController {

@Resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class RelaScenicSpotCommentsController extends BaseController {
private IRelaScenicSpotCommentsService relaScenicSpotCommentsService;

@GetMapping
@ApiOperation("关联景区评论关联表page查询")
@ApiOperation("关联-景区评论关联表page查询")
public ResResult<IPage<RelaScenicSpotCommentsVO>> getByPage(@Validated RelaScenicSpotCommentsDTO relaScenicSpotComments) {
// TODO 分页查询
IPage<RelaScenicSpotCommentsVO> page = relaScenicSpotCommentsService.selectByPage(getPage(), relaScenicSpotComments);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class RelaUserCommentsController extends BaseController {
private IRelaUserCommentsService relaUserCommentsService;

@GetMapping
@ApiOperation("关联用户评论表page查询")
@ApiOperation("关联-用户评论表page查询")
// @ApiImplicitParams({
// @ApiImplicitParam(name = "page", value = "当前页数", defaultValue = "1"),
// @ApiImplicitParam(name = "size", value = "每页个数", defaultValue = "10"),
Expand Down

0 comments on commit 2a1977b

Please sign in to comment.