|
|
@ -7,6 +7,8 @@ import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Propagation; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
@Slf4j |
|
|
|
@Service |
|
|
|
@Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class) |
|
|
@ -15,4 +17,10 @@ public class StatisticsService implements IStatisticsService{ |
|
|
|
public StatisticsVo.FastEdResult getResult(StatisticsDto.Hospital param) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public List<StatisticsVo.PointTime> getPointTime(StatisticsDto.Hospital param) { |
|
|
|
//
|
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|