| 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); | 
| } |