admin
2019-08-26 d28bed1a1275131a5ca37f7da37961e2b518ac07
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
package com.yeshi.fanli.service.inter.taobao;
 
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);
 
}