liujie
1 天以前 74f8b8074a2fb391b5363b4dca5f99bf31993430
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
package com.stylefeng.guns.modular.system.service;
 
import com.baomidou.mybatisplus.plugins.Page;
import com.stylefeng.guns.modular.system.model.TCheckCarActivity;
import com.baomidou.mybatisplus.service.IService;
import com.stylefeng.guns.modular.system.model.TCheckCarActivityRecord;
 
import java.util.Map;
 
/**
 * <p>
 * 代检车活动表 服务类
 * </p>
 *
 * @author mitao
 * @since 2025-08-02
 */
public interface ITCheckCarActivityService extends IService<TCheckCarActivity> {
 
    Page<TCheckCarActivity> getOrderList(String createTime, String branchOfficeName, String name, String activityAreaCode, Integer status);
    
    /**
     * 获取活动统计数据
     * @param activityId 活动ID
     * @return 统计数据
     */
    Map<String, Object> getActivityStatistics(Integer activityId);
    
    /**
     * 获取活动优惠券领取记录
     *
     * @param activityId 活动ID
     * @param userPhone 用户手机号(可选)
     * @return 领取记录分页数据
     */
    Page<TCheckCarActivityRecord> getActivityRecords(Integer activityId, String userPhone);
}