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

2 years ago
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);
}