|
|
@@ -27,6 +27,7 @@ import com.yy.basedevelop.common.data.BasePageResult;
|
|
|
import com.yy.basedevelop.common.util.ruoyi.utils.DateUtils;
|
|
|
import com.yy.basedevelop.dto.LoginUser;
|
|
|
import jakarta.persistence.criteria.Predicate;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
@@ -43,6 +44,7 @@ import java.util.stream.Collectors;
|
|
|
* @author : http://www.yonsum.com
|
|
|
* @date : 2025-10-10
|
|
|
*/
|
|
|
+@Slf4j
|
|
|
@Service
|
|
|
public class IpTokenInterfaceServiceImpl implements IpTokenInterfaceService {
|
|
|
@Autowired
|
|
|
@@ -210,6 +212,7 @@ public class IpTokenInterfaceServiceImpl implements IpTokenInterfaceService {
|
|
|
po.setStatus("normal");
|
|
|
Example<IpTokenInterfacePO> example = Example.of(po, matcher);
|
|
|
List<IpTokenInterfacePO> interfacePOList = ipTokenInterfaceRepository.findAll(example);
|
|
|
+ log.info("interfacePOList:{},{},{}",accountId,interfaceId,interfacePOList);
|
|
|
if(!interfacePOList.isEmpty()){
|
|
|
IpTokenInterfacePO first = interfacePOList.getFirst();
|
|
|
Long tid = first.getTid();
|