1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| package com.stylefeng.guns.modular.system.service;
|
| import com.stylefeng.guns.modular.system.model.TSysPushOrder;
| import com.baomidou.mybatisplus.service.IService;
|
| import java.util.List;
|
| /**
| * <p>
| * 系统设置-推单 服务类
| * </p>
| *
| * @author 吕雪
| * @since 2020-06-09
| */
| public interface ITSysPushOrderService extends IService<TSysPushOrder> {
|
|
| /**
| * 获取推送配置数据
| * @param type
| * @param pushType
| * @return
| * @throws Exception
| */
| List<TSysPushOrder> querys(Integer type, Integer pushType, Integer companyId) throws Exception;
|
| }
|
|