You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-spms-java/src/main/java/com/glxp/api/service/thrsys/ThrSystemBusApiService.java

30 lines
826 B
Java

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<ThrSystemBusApiEntity> filterSysBusApi(FilterBasicThirdSysDetailRequest filterBasicThirdSysDetailRequest);
/**
* 第三方系统 业务单据提交接口添加单据类型
*/
boolean saveBusTypes(ThrSystemBusApiEntity thrSystemBusApiEntity);
boolean delete(Integer id);
}