|
@@ -4,7 +4,6 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.zanxiang.erp.security.annotation.PreAuthorize;
|
|
|
import com.zanxiang.game.module.manage.pojo.params.GameAppletShellAddUpdateParam;
|
|
|
import com.zanxiang.game.module.manage.pojo.params.GameAppletShellListParam;
|
|
|
-import com.zanxiang.game.module.manage.pojo.vo.CpVO;
|
|
|
import com.zanxiang.game.module.manage.pojo.vo.GameAppletShellListVO;
|
|
|
import com.zanxiang.game.module.manage.service.IGameAppletShellService;
|
|
|
import com.zanxiang.module.util.pojo.ResultVO;
|
|
@@ -45,7 +44,7 @@ public class GameAppletShellController {
|
|
|
@ApiOperation(value = "壳包配置列表查询")
|
|
|
@PostMapping(value = "/list")
|
|
|
@PreAuthorize(permissionKey = "manage:appletShell:list")
|
|
|
- @ApiResponses(value = {@ApiResponse(code = 200, message = "成功", response = CpVO.class)})
|
|
|
+ @ApiResponses(value = {@ApiResponse(code = 200, message = "成功", response = GameAppletShellListVO.class)})
|
|
|
public ResultVO<IPage<GameAppletShellListVO>> list(@Validated @RequestBody GameAppletShellListParam param) {
|
|
|
return ResultVO.ok(gameAppletShellService.listOfPage(param));
|
|
|
}
|