| | |
| | |
|
| | | public interface MsgOtherDetailService {
|
| | | /**
|
| | | * 添加到订单消息
|
| | | * 添加到其他消息
|
| | | *
|
| | | * @param detail
|
| | | * @throws MsgOtherDetailException
|
| | |
| | | public void addMsgOtherDetail(MsgOtherDetail detail) throws MsgOtherDetailException;
|
| | |
|
| | | /**
|
| | | * 根据订单号用户ID更新数据
|
| | | * 更新数据
|
| | | *
|
| | | * @param detail
|
| | | * @throws MsgOtherDetailException
|
| | |
| | | public void updateMsgOtherDetail(MsgOtherDetail detail) throws MsgOtherDetailException;
|
| | |
|
| | | /**
|
| | | * 订单消息列表
|
| | | * 其他消息列表
|
| | | *
|
| | | * @param uid
|
| | | * @param page
|
| | |
| | | public List<MsgOtherDetail> listMsgOtherDetail(Long uid, int page);
|
| | |
|
| | | /**
|
| | | * 订单消息数
|
| | | * 其他消息数
|
| | | *
|
| | | * @param uid
|
| | | * @return
|
| | |
| | | * @param uid
|
| | | */
|
| | | public void readMsgByUid(Long uid);
|
| | |
|
| | | public void deleteByPrimaryKey(Long id);
|
| | |
|
| | | public MsgOtherDetail selectByPrimaryKey(Long id);
|
| | | }
|