liusheng
2025-04-18 09538e3f9a0392144637d04495d5975b6d7578b8
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
30
31
32
33
34
35
36
37
38
package com.smartor.mapper;
 
 
import com.smartor.domain.ServiceThirdData;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * 第三方厂商数据Mapper接口
 *
 * @author ruoyi
 * @date 2023-10-10
 */
@Mapper
public interface ServiceThirdDataMapper {
    /**
     * 查询第三方厂商数据列表
     *
     * @param serviceThirdData 第三方厂商数据
     * @return 第三方厂商数据集合
     */
    public List<ServiceThirdData> selectServiceThirdDataList(ServiceThirdData serviceThirdData);
 
    /**
     * 新增短信参数
     *
     * @param serviceThirdData 短信参数
     * @return 结果
     */
    public int insertThirdData(ServiceThirdData serviceThirdData);
 
    public int insertThirdDataZxyzjh(ServiceThirdData serviceThirdData);
 
    public int insertThirdDataCfxzsq(ServiceThirdData serviceThirdData);
 
    public int updateIsDeal(ServiceThirdData serviceThirdData);
}