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.
22 lines
537 B
Java
22 lines
537 B
Java
1 year ago
|
package com.supervision.service.impl;
|
||
|
|
||
|
import com.supervision.service.DiagnoseHallService;
|
||
|
import lombok.RequiredArgsConstructor;
|
||
|
import lombok.extern.slf4j.Slf4j;
|
||
|
import org.springframework.data.redis.core.RedisTemplate;
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
@Service
|
||
|
@RequiredArgsConstructor
|
||
|
@Slf4j
|
||
|
public class DiagnoseHallServiceImpl implements DiagnoseHallService {
|
||
|
|
||
|
private final RedisTemplate<String,String> redisTemplate;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public boolean achieveDiagnoseResource() {
|
||
|
return false;
|
||
|
}
|
||
|
}
|