|
@ -27,6 +27,7 @@ import com.elink.esua.epdc.commons.tools.validator.group.AddGroup; |
|
|
import com.elink.esua.epdc.commons.tools.validator.group.DefaultGroup; |
|
|
import com.elink.esua.epdc.commons.tools.validator.group.DefaultGroup; |
|
|
import com.elink.esua.epdc.commons.tools.validator.group.UpdateGroup; |
|
|
import com.elink.esua.epdc.commons.tools.validator.group.UpdateGroup; |
|
|
import com.elink.esua.epdc.dto.AppMenuDTO; |
|
|
import com.elink.esua.epdc.dto.AppMenuDTO; |
|
|
|
|
|
import com.elink.esua.epdc.dto.epdc.result.EpdcAppChildNavResultDTO; |
|
|
import com.elink.esua.epdc.dto.epdc.result.EpdcAppIndexPanelResultDTO; |
|
|
import com.elink.esua.epdc.dto.epdc.result.EpdcAppIndexPanelResultDTO; |
|
|
import com.elink.esua.epdc.excel.AppMenuExcel; |
|
|
import com.elink.esua.epdc.excel.AppMenuExcel; |
|
|
import com.elink.esua.epdc.service.AppMenuService; |
|
|
import com.elink.esua.epdc.service.AppMenuService; |
|
@ -126,4 +127,15 @@ public class AppMenuController { |
|
|
public Result<List<EpdcAppIndexPanelResultDTO>> indexPanel(@PathVariable("mobile") String mobile) { |
|
|
public Result<List<EpdcAppIndexPanelResultDTO>> indexPanel(@PathVariable("mobile") String mobile) { |
|
|
return appMenuService.indexPanel(mobile); |
|
|
return appMenuService.indexPanel(mobile); |
|
|
} |
|
|
} |
|
|
|
|
|
/** |
|
|
|
|
|
* @param userId |
|
|
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List < com.elink.esua.epdc.dto.epdc.result.EpdcAppChildNavResultDTO>> |
|
|
|
|
|
* @Author lpf |
|
|
|
|
|
* @Description 首页面板 获取数据端APP菜单 |
|
|
|
|
|
* @Date 2020/03/18 10:42 |
|
|
|
|
|
**/ |
|
|
|
|
|
@GetMapping("/analysisIndexPanel/{userId}") |
|
|
|
|
|
public Result<List<EpdcAppChildNavResultDTO>> analysisIndexPanel(@PathVariable("userId") String userId) { |
|
|
|
|
|
return appMenuService.getAnalysisIndexPanel(userId); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|