Administrator
2018-11-14 7ba5c2575d8c13ce53d5d562fe7f6b649e7778b5
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);
}