xuhy
2024-12-25 54a46698ddf52e65484afb225e3c61c1ffbb9aa0
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
29
package com.stylefeng.guns.modular.system.dao;
 
import com.stylefeng.guns.modular.system.model.TSysPushOrder;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 系统设置-推单 Mapper 接口
 * </p>
 *
 * @author 吕雪
 * @since 2020-06-09
 */
public interface TSysPushOrderMapper extends BaseMapper<TSysPushOrder> {
 
 
    /**
     * 获取推送配置
     * @param type
     * @param pushType
     * @return
     */
    List<TSysPushOrder> querys(@Param("type") Integer type, @Param("pushType") Integer pushType,
                           @Param("companyId") Integer companyId);
 
}