yujian
2019-05-09 2764ae2d7f4d9cb9810a2188c92cb2eb439c3f22
fanli/src/main/java/com/yeshi/fanli/service/inter/msg/MsgOrderDetailService.java
@@ -15,6 +15,15 @@
   public void addMsgOrderDetail(MsgOrderDetail detail) throws MsgOrderDetailException;
   /**
    * 根据订单号用户ID更新数据
    *
    * @param detail
    * @param needNotify-是否需要通知
    * @throws MsgOrderDetailException
    */
   public void updateMsgOrderDetail(MsgOrderDetail detail,boolean needNotify) throws MsgOrderDetailException;
   /**
    * 订单消息列表
    * 
    * @param uid
@@ -24,10 +33,23 @@
   public List<MsgOrderDetail> listMsgOrderDetail(Long uid, int page);
   /**
    * 根据订单号获取
    * @return
    */
   public List<MsgOrderDetail> listMsgOrderByOrderId(String orderId);
   /**
    * 订单消息数
    * 
    * @param uid
    * @return
    */
   public long countMsgOrderDetail(Long uid);
   /**
    * 设置所有消息已读
    *
    * @param uid
    */
   public void readMsgByUid(Long uid);
}