package org.springblade.modules.location.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.springblade.modules.location.entity.LivePersonLocation;
|
import org.springblade.modules.location.vo.LivePersonLocationVO;
|
|
import java.util.List;
|
|
public interface ILivePersonLocationService extends IService<LivePersonLocation> {
|
List<LivePersonLocationVO> getList(LivePersonLocationVO livePersonLocation);
|
}
|