智慧保安后台管理-外网项目备份
guoshilong
2024-01-20 5e3faa196ec93a8d1b983f50b3cd30d98c4e708a
1
2
3
4
5
6
7
8
9
10
11
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);
}