package com.yeshi.fanli.service.inter.msg;
|
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.bus.msg.MsgOrderDetail;
|
import com.yeshi.fanli.exception.msg.MsgOrderDetailException;
|
|
public interface MsgOrderDetailService {
|
/**
|
* 添加到订单消息
|
*
|
* @param detail
|
* @throws MsgOrderDetailException
|
*/
|
public void addMsgOrderDetail(MsgOrderDetail detail) throws MsgOrderDetailException;
|
|
/**
|
* 订单消息列表
|
*
|
* @param uid
|
* @param page
|
* @return
|
*/
|
public List<MsgOrderDetail> listMsgOrderDetail(Long uid, int page);
|
|
/**
|
* 订单消息数
|
*
|
* @param uid
|
* @return
|
*/
|
public long countMsgOrderDetail(Long uid);
|
}
|