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.
24 lines
669 B
Java
24 lines
669 B
Java
3 years ago
|
package com.glxp.api.service.basic;
|
||
|
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.glxp.api.common.res.BaseResponse;
|
||
|
import com.glxp.api.entity.basic.BasicThirdSysDetailEntity;
|
||
|
import com.glxp.api.entity.basic.BasicThirdSysEntity;
|
||
|
import com.glxp.api.entity.thrsys.ThrInvProductsEntity;
|
||
|
import com.glxp.api.entity.thrsys.ThrSystemEntity;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface BasicThirdSysDetailService{
|
||
|
|
||
|
BasicThirdSysDetailEntity selectByKey(String key, String thirdSys);
|
||
|
|
||
|
/**
|
||
|
* 测试第三方服务连通性
|
||
|
*
|
||
|
* @param thrSystemEntity
|
||
|
*/
|
||
|
BaseResponse testThirdService(ThrSystemEntity thrSystemEntity);
|
||
|
}
|