喻健
2018-11-16 41a4f9aa848255b97b4ad2bd76cb2dfa177df609
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yeshi.fanli.dao.mybatis.order;
 
import java.util.List;
 
import com.yeshi.fanli.entity.bus.user.LostOrder;
 
public interface LostOrderMapper {
 
    int updateByPrimaryKeySelective(LostOrder record);
 
    /**
     * 通过订单号查询丢失订单
     * 
     * @param orderId
     * @return
     */
    List<LostOrder> selectByOrderId(String orderId);
}