yujian
2020-05-23 28cf328a098334b51a3e9d2d56f983fb8c862211
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.yeshi.fanli.service.inter.order.tb;
 
import java.util.List;
import java.util.Set;
 
import com.yeshi.fanli.entity.taobao.TaoBaoPunishOrder;
 
public interface TaoBaoPunishOrderService {
 
    /**
     * 处理处罚订单
     * 
     * @param order
     */
    public void doPunishOrder(TaoBaoPunishOrder order,Set<Long> uidSets);
 
    /**
     * 批量处理
     * 
     * @param orderList
     */
    public void doPunishOrder(List<TaoBaoPunishOrder> orderList);
 
    /**
     * 
     * @param order
     */
    public void savePunishOrder(TaoBaoPunishOrder order);
    
    
    /**
     * 根据交易父ID查询
     * @param orderId
     * @return
     */
    public int countByTradeParentId(String orderId);
 
}