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.SOSTargetInfo;
|
import com.yeshi.location.app.service.inter.sos.SOSTargetInfoService;
|
import com.yeshi.location.app.service.query.sos.SOSTargetInfoQuery;
|
|
|
public interface SOSTargetInfoService {
|
|
/**
|
* 获取列表
|
* @param sOSTargetInfoQuery
|
* @param page
|
* @param pageSize
|
* @return
|
*/
|
public List<SOSTargetInfo> list(SOSTargetInfoQuery sOSTargetInfoQuery, int page, int pageSize) ;
|
|
/**
|
*
|
*/
|
public long count(SOSTargetInfoQuery sOSTargetInfoQuery) ;
|
|
/**
|
*
|
*/
|
public SOSTargetInfo get(String id) ;
|
|
/**
|
*
|
*/
|
public void add(SOSTargetInfo sOSTargetInfo) throws Exception;
|
|
/**
|
*
|
*/
|
public void update(SOSTargetInfo sOSTargetInfo) ;
|
|
/**
|
*
|
*/
|
public void delete(List<String> idList) ;
|
|
|
/**
|
* 根据ID批量查询
|
*/
|
public List<SOSTargetInfo> listByIds(List<String> ids);
|
|
|
}
|