zj
2025-05-28 bcd36411feb0351347289476eb7ee9e5dd1c3b9d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package project.c2c;
 
public interface C2cAppealService {
 
    public C2cAppeal get(String order_no);
 
    public void save(C2cAppeal entity);
 
    public void update(C2cAppeal entity);
 
    public void delete(String id);
 
    public C2cAppeal findById(String id);
    
    /*
     * 查询未处理申诉数量,根据广告ID
     */
    public Long findNoHandleAppealsCountByAdvertId(String c2cAdvertId);
 
}