package com.yeshi.location.app.service.inter.sos;
|
|
import com.yeshi.location.app.entity.sos.SOSRecordList;
|
|
import java.util.List;
|
|
/**
|
* @author hxh
|
* @title: SOSRecordListService
|
* @description: 求助列表,包含求助与被求助信息,主要用于接口中做查询,无实际意义
|
* @date 2021/11/27 10:52
|
*/
|
public interface SOSRecordListService {
|
|
|
public void add(SOSRecordList recordList) throws Exception;
|
|
public List<SOSRecordList> listByUid(Long uid,int page,int pageSize);
|
|
public long countByUid(Long uid);
|
|
public void deleteAll(Long uid);
|
|
|
}
|