|
@@ -14,7 +14,6 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
-import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
import java.util.List;
|
|
@@ -56,4 +55,12 @@ public class SysUserPagesetController {
|
|
|
public RespDTO<Boolean> savePageSet(@RequestBody @Valid SysUserPagesetSaveVO sysUserPagesetSaveVO) {
|
|
|
return RespDTO.onSuc(sysUserPagesetFacade.savePageSet(sysUserPagesetSaveVO));
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "获取默认列设置[by:zhaops]",
|
|
|
+ notes = "pageType:页面分组,必填<br>")
|
|
|
+ @PostMapping("/getDefaultPageSet")
|
|
|
+ @SysLogger("getDefaultPageSet")
|
|
|
+ public RespDTO<List<SysUserPagesetDTO>> getDefaultPageSet(@RequestBody @Valid SysUserPagesetQueryVO sysUserPagesetQueryVO) {
|
|
|
+ return RespDTO.onSuc(sysUserPagesetFacade.getDefaultPageSet(sysUserPagesetQueryVO));
|
|
|
+ }
|
|
|
}
|