package com.yeshi.makemoney.app.service.inter.msg;
|
|
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.makemoney.app.entity.msg.AppPageNotifyMsg;
|
import com.yeshi.makemoney.app.service.inter.msg.AppPageNotifyMsgService;
|
import com.yeshi.makemoney.app.service.query.msg.AppPageNotifyMsgQuery;
|
|
|
public interface AppPageNotifyMsgService {
|
|
/**
|
* 获取列表
|
* @param appPageNotifyMsgQuery
|
* @param page
|
* @param pageSize
|
* @return
|
*/
|
public List<AppPageNotifyMsg> list(AppPageNotifyMsgQuery appPageNotifyMsgQuery, int page, int pageSize) ;
|
|
/**
|
*
|
*/
|
public long count(AppPageNotifyMsgQuery appPageNotifyMsgQuery) ;
|
|
/**
|
*
|
*/
|
public AppPageNotifyMsg get(String id) ;
|
|
/**
|
*
|
*/
|
public void add(AppPageNotifyMsg appPageNotifyMsg) throws Exception;
|
|
/**
|
*
|
*/
|
public void update(AppPageNotifyMsg appPageNotifyMsg) ;
|
|
/**
|
*
|
*/
|
public void delete(List<String> idList) ;
|
|
|
}
|