1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.panzhihua.service_community.service;
|
| import com.panzhihua.common.model.vos.R;
|
| /**
| * @program: springcloud_k8s_panzhihuazhihuishequ
| * @description: 广告
| * @author: huang.hongfa weixin hhf9596 qq 959656820
| * @create: 2020-12-28 15:41
| **/
| public interface ComOpsAdvService {
| /**
| * 获取广告跳转内容配置
| * @return 跳转内容集合
| */
| R getJumpContent();
| }
|
|