3 changed files with 54 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||
package com.ccsens.wisdomcar.service; |
|||
|
|||
import com.ccsens.wisdomcar.bean.dto.StatisticsDto; |
|||
import com.ccsens.wisdomcar.bean.vo.StatisticsVo; |
|||
|
|||
public interface IStatisticsService { |
|||
/** |
|||
* 查看FAST ED结果 |
|||
* @param param |
|||
* @return |
|||
*/ |
|||
StatisticsVo.FastEdResult getResult(StatisticsDto.Hospital param); |
|||
} |
@ -0,0 +1,18 @@ |
|||
package com.ccsens.wisdomcar.service; |
|||
|
|||
import com.ccsens.wisdomcar.bean.dto.StatisticsDto; |
|||
import com.ccsens.wisdomcar.bean.vo.StatisticsVo; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.stereotype.Service; |
|||
import org.springframework.transaction.annotation.Propagation; |
|||
import org.springframework.transaction.annotation.Transactional; |
|||
|
|||
@Slf4j |
|||
@Service |
|||
@Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class) |
|||
public class StatisticsService implements IStatisticsService{ |
|||
@Override |
|||
public StatisticsVo.FastEdResult getResult(StatisticsDto.Hospital param) { |
|||
return null; |
|||
} |
|||
} |
Loading…
Reference in new issue