智慧保安后台管理-外网项目备份
guoshilong
2024-01-16 6f201b8d3743e246a71f00a9ba98d10b128fae38
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);
}