yujian
2020-05-09 7e7db2fa55a9a3af46d4fd8ede0dee147f101d64
fanli/src/main/java/com/yeshi/fanli/service/inter/msg/MsgOtherDetailService.java
@@ -7,7 +7,7 @@
public interface MsgOtherDetailService {
   /**
    * 添加到订单消息
    * 添加到其他消息
    * 
    * @param detail
    * @throws MsgOtherDetailException
@@ -15,7 +15,7 @@
   public void addMsgOtherDetail(MsgOtherDetail detail) throws MsgOtherDetailException;
   /**
    * 根据订单号用户ID更新数据
    * 更新数据
    * 
    * @param detail
    * @throws MsgOtherDetailException
@@ -23,7 +23,7 @@
   public void updateMsgOtherDetail(MsgOtherDetail detail) throws MsgOtherDetailException;
   /**
    * 订单消息列表
    * 其他消息列表
    * 
    * @param uid
    * @param page
@@ -32,7 +32,7 @@
   public List<MsgOtherDetail> listMsgOtherDetail(Long uid, int page);
   /**
    * 订单消息数
    * 其他消息数
    * 
    * @param uid
    * @return
@@ -45,4 +45,8 @@
    * @param uid
    */
   public void readMsgByUid(Long uid);
   public void deleteByPrimaryKey(Long id);
   public MsgOtherDetail selectByPrimaryKey(Long id);
}