|
|
@@ -404,12 +404,29 @@ public class UserIdentityServiceImpl extends BaseMybatisDao<UserIdentityMapper>
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public AdvertisingBo advertising() {
|
|
|
- AdvertisingBo advertising=new AdvertisingBo();
|
|
|
- advertising.setPicture("/customer_sys_file/1/GG1.jpg");
|
|
|
- List<String> list=new ArrayList<>();
|
|
|
- list.add("快速响应您的需求 只为助您成就一流企业");
|
|
|
- advertising.setSlogan(list);
|
|
|
+ public List<AdvertisingBo> advertising() {
|
|
|
+ List<AdvertisingBo> advertising=new ArrayList<>();
|
|
|
+ AdvertisingBo one=new AdvertisingBo();
|
|
|
+ one.setId("000461d0-2120-4809-b709-3cb5f5acfbb3");
|
|
|
+ one.setPicture("/customer_sys_file/1/GG1.jpg");
|
|
|
+ one.setType("成果");
|
|
|
+ one.setSlogan("快速响应您的需求 只为助您成就一流企业");
|
|
|
+ advertising.add(one);
|
|
|
+
|
|
|
+ AdvertisingBo two=new AdvertisingBo();
|
|
|
+ two.setId("0037f99f-00aa-4bd4-95bd-c1d492743ad2");
|
|
|
+ two.setPicture("/customer_sys_file/1/GG2.jpg");
|
|
|
+ two.setType("需求");
|
|
|
+ two.setSlogan("快速响应您的需求 只为助您成就一流企业");
|
|
|
+ advertising.add(two);
|
|
|
+
|
|
|
+ AdvertisingBo three=new AdvertisingBo();
|
|
|
+ three.setId("ac08e6f6-6567-4a15-8573-3f08350b684d");
|
|
|
+ three.setPicture("/customer_sys_file/1/GG3.jpg");
|
|
|
+ three.setType("专家");
|
|
|
+ three.setSlogan("快速响应您的需求 只为助您成就一流企业");
|
|
|
+ advertising.add(three);
|
|
|
+
|
|
|
return advertising;
|
|
|
}
|
|
|
|