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/ThrSystemService.java

43 lines
1.2 KiB
Java

package com.glxp.api.service.thrsys;
import com.baomidou.mybatisplus.extension.service.IService;
import com.glxp.api.entity.thrsys.ThrSystemEntity;
import com.glxp.api.req.thrsys.FilterBasicThirdSysRequest;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface ThrSystemService extends IService<ThrSystemEntity> {
boolean updateBasicThiSys(ThrSystemEntity thrSystemEntity);
ThrSystemEntity selectByThirdId(String thirdId);
List<ThrSystemEntity> filterBasicThiSys(FilterBasicThirdSysRequest filterBasicThirdSysRequest);
ThrSystemEntity selectMainThrSys();
ThrSystemEntity selectMainThrSys1(FilterBasicThirdSysRequest filterBasicThirdSysRequest);
/**
* 校验第三方系统名称是否重复
*
* @param thirdId 第三方系统ID
* @param thirdName 第三方系统名称
* @return
*/
boolean selectThirdNameExists(String thirdId, String thirdName);
/**
* 根据第三方系统ID查询第三方系统名称
*
* @param thirdId
* @return
*/
String selectThirdNameByThirdId(@Param("thirdId") String thirdId);
int countThirdSys(FilterBasicThirdSysRequest filterBasicThirdSysRequest);
}