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-wms-java/src/main/java/com/glxp/api/service/thrsys/ThrSystemDetailService.java

25 lines
794 B
Java

package com.glxp.api.service.thrsys;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.entity.thrsys.ThrSystemEntity;
import com.glxp.api.entity.thrsys.ThrSystemDetailEntity;
import com.glxp.api.req.thrsys.FilterBasicThirdSysDetailRequest;
import java.util.List;
public interface ThrSystemDetailService {
boolean updateBasicThirdSysDetail(ThrSystemDetailEntity basicThirdSysEntity);
ThrSystemDetailEntity selectByKey(String key, String thirdSys);
List<ThrSystemDetailEntity> filterBasicThirdSysDetail(FilterBasicThirdSysDetailRequest filterBasicThirdSysDetailRequest);
void updateInterfaceStatus(List<ThrSystemDetailEntity> list);
/**
* 测试第三方服务连通性
*/
BaseResponse testThirdService(ThrSystemEntity thrSystemEntity);
}