Commit 8803d6eb authored by KeYong's avatar KeYong

更新

parent 9bc99156
......@@ -7,6 +7,6 @@ import com.yeejoin.equipmanage.common.entity.CarInfo;
* Mapper 接口
*
*/
public interface EmergencyMapper extends BaseMapper {
public interface EmergencyMapper {
}
......@@ -11,9 +11,9 @@ import java.util.List;
*
*
*/
public interface IEmergencyService extends IService {
public interface IEmergencyService {
/**
* @return
*/
List<UnitAreaTreeVo> getAll();
List getAll();
}
......@@ -15,14 +15,14 @@ import java.util.List;
*
*/
@Service
public class EmergencyServiceImpl extends ServiceImpl implements IEmergencyService {
public class EmergencyServiceImpl implements IEmergencyService {
@Autowired
private EmergencyMapper emergencyMapper;
@Override
public List<UnitAreaTreeVo> getAll() {
public List getAll() {
return null;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment