package com.gkhy.safePlatform.emergency.service;
|
|
import com.gkhy.safePlatform.commons.vo.ResultVO;
|
import com.gkhy.safePlatform.emergency.entity.DemoInfo;
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
public interface DemoService {
|
|
ResultVO<DemoInfo> getById(Long id);
|
|
}
|