|
@ -494,7 +494,7 @@ public class BaseMenuManageService {
|
|
|
" t.style_name as \"styleName\" " +
|
|
|
" from base_menu_show t left join " +
|
|
|
" base_link_dict m on t.menu_id= m.id" +
|
|
|
" where t.is_del ='1' and t.model_id='03' and t.status='1' order by t.menu_sort asc ";
|
|
|
" where t.is_del ='1' and t.model_id='03' and m.status='1' order by t.menu_sort asc ";
|
|
|
List<Map<String,Object>> listLink=hibenateUtils.createSQLQuery(sqlLink);
|
|
|
|
|
|
for (Map<String,Object> map:listModel){
|
|
@ -670,7 +670,7 @@ public class BaseMenuManageService {
|
|
|
" t.menu_title as \"menuTitle\", " +
|
|
|
" t.describtion as \"describtion\", " +
|
|
|
" t.menu_img as \"menuImg\" " +
|
|
|
"from base_menu_dict t where 1=1 and t.is_del ='1' and status =1";
|
|
|
"from base_menu_dict t where 1=1 and t.is_del ='1' and t.status =1";
|
|
|
if (StringUtils.isNoneBlank(parentId)){
|
|
|
sqlParent+=" and t.id = '"+parentId+"'";
|
|
|
}else {
|