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.
32 lines
797 B
Java
32 lines
797 B
Java
3 years ago
|
package com.glxp.api.service.thrsys;
|
||
|
|
||
|
|
||
|
import com.glxp.api.entity.thrsys.ThrSystemEntity;
|
||
|
import com.glxp.api.req.thrsys.FilterBasicThirdSysRequest;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface ThrSystemService {
|
||
|
|
||
|
|
||
|
boolean updateBasicThiSys(ThrSystemEntity thrSystemEntity);
|
||
|
|
||
|
ThrSystemEntity selectByThirdId(String thirdId);
|
||
|
|
||
|
List<ThrSystemEntity> filterBasicThiSys(FilterBasicThirdSysRequest filterBasicThirdSysRequest);
|
||
|
|
||
|
ThrSystemEntity selectMainThrSys();
|
||
|
|
||
|
/**
|
||
|
* 校验第三方系统名称是否重复
|
||
|
*
|
||
|
* @param thirdId 第三方系统ID
|
||
|
* @param thirdName 第三方系统名称
|
||
|
* @return
|
||
|
*/
|
||
|
boolean selectThirdNameExists(String thirdId, String thirdName);
|
||
|
|
||
|
int countThirdSys(FilterBasicThirdSysRequest filterBasicThirdSysRequest);
|
||
|
|
||
|
}
|