|
|
@ -2,18 +2,16 @@ package com.yxt.anrui.portal.biz.index; |
|
|
|
|
|
|
|
import com.yxt.anrui.portal.api.appsubsetversion.AppSubsetVersionVo; |
|
|
|
import com.yxt.anrui.portal.api.banner.BannerVo; |
|
|
|
import com.yxt.anrui.portal.api.formnotice.FormNotice; |
|
|
|
import com.yxt.anrui.portal.api.formnotice.FormNoticeQuery; |
|
|
|
import com.yxt.anrui.portal.api.formnotice.FormNoticeVo; |
|
|
|
import com.yxt.anrui.portal.api.index.AppIndexFeign; |
|
|
|
import com.yxt.anrui.portal.api.index.AppIndexQuery; |
|
|
|
import com.yxt.anrui.portal.api.index.AppIndexVo; |
|
|
|
import com.yxt.anrui.portal.api.sysuser.SysUserVo; |
|
|
|
import com.yxt.anrui.portal.biz.appsubsetversion.AppSubsetVersionService; |
|
|
|
import com.yxt.anrui.portal.biz.banner.BannerService; |
|
|
|
import com.yxt.anrui.portal.biz.flow.FlowableService; |
|
|
|
import com.yxt.anrui.portal.biz.formnotice.FormNoticeService; |
|
|
|
import com.yxt.anrui.portal.biz.sysuser.SysUserService; |
|
|
|
import com.yxt.common.base.config.component.FileUploadComponent; |
|
|
|
import com.yxt.common.base.utils.DateUtils; |
|
|
|
import com.yxt.common.core.query.PagerQuery; |
|
|
|
import com.yxt.common.core.result.ResultBean; |
|
|
@ -23,7 +21,6 @@ import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
import javax.validation.Valid; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.HashMap; |
|
|
|
import java.util.List; |
|
|
@ -51,6 +48,8 @@ public class AppIndexRest implements AppIndexFeign { |
|
|
|
private FlowableService flowableService; |
|
|
|
@Autowired |
|
|
|
private MessageListFeign messageListFeign; |
|
|
|
@Autowired |
|
|
|
private FileUploadComponent fileUploadComponent; |
|
|
|
|
|
|
|
private String LINKSID="147694bb-c765-4426-8f67-d19a66585f31"; |
|
|
|
|
|
|
@ -83,7 +82,8 @@ public class AppIndexRest implements AppIndexFeign { |
|
|
|
|
|
|
|
// 子应用列表
|
|
|
|
String linkSid = LINKSID; |
|
|
|
List<AppSubsetVersionVo> subsetVersionVoList = appSubsetVersionService.selectVersionList(linkSid); |
|
|
|
String path = fileUploadComponent.getUrlPrefix(); |
|
|
|
List<AppSubsetVersionVo> subsetVersionVoList = appSubsetVersionService.selectVersionList(linkSid,path); |
|
|
|
subsetVersionVoList.stream().forEach(item -> { |
|
|
|
item.setCornerNum("3"); |
|
|
|
}); |
|
|
|