package com.yeshi.location.app.service.inter.sos;
|
|
import java.lang.Exception;
|
import javax.annotation.Resource;
|
import java.util.Date;
|
import org.yeshi.utils.bean.BeanUtil;
|
import java.util.List;
|
import com.yeshi.location.app.entity.sos.SOSRecord;
|
import com.yeshi.location.app.service.inter.sos.SOSRecordService;
|
import com.yeshi.location.app.service.query.sos.SOSRecordQuery;
|
|
|
public interface SOSRecordService {
|
|
/**
|
* 获取列表
|
* @param sOSRecordQuery
|
* @param page
|
* @param pageSize
|
* @return
|
*/
|
public List<SOSRecord> list(SOSRecordQuery sOSRecordQuery, int page, int pageSize) ;
|
|
/**
|
*
|
*/
|
public long count(SOSRecordQuery sOSRecordQuery) ;
|
|
/**
|
*
|
*/
|
public SOSRecord get(String id) ;
|
|
/**
|
*
|
*/
|
public void add(SOSRecord sOSRecord) throws Exception;
|
|
/**
|
*
|
*/
|
public void update(SOSRecord sOSRecord) ;
|
|
/**
|
*
|
*/
|
public void delete(List<String> idList) ;
|
|
|
}
|