package com.glxp.api.service.thrsys; import com.glxp.api.entity.thrsys.ThrSystemBusApiEntity; import com.glxp.api.req.thrsys.FilterBasicThirdSysDetailRequest; import java.util.List; public interface ThrSystemBusApiService { boolean insertSysBusApi(ThrSystemBusApiEntity basicThirdSysEntity); boolean updateSysBusApi(ThrSystemBusApiEntity basicThirdSysEntity); ThrSystemBusApiEntity selectByKey(String key, String thirdSys); ThrSystemBusApiEntity selectByThrBus(String action, String thirdSys); List filterSysBusApi(FilterBasicThirdSysDetailRequest filterBasicThirdSysDetailRequest); /** * 第三方系统 业务单据提交接口添加单据类型 */ boolean saveBusTypes(ThrSystemBusApiEntity thrSystemBusApiEntity); boolean delete(Integer id); }