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