Administrator
2018-11-20 6b1193b5288c02d0553b353d3043a89066a9dbba
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);
}