Pu Zhibing
8 天以前 41d7465a87e2a52740936a5969c5b182e5eb09b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.stylefeng.guns.modular.system.service.impl;
 
import com.stylefeng.guns.modular.system.model.TCheckCarActivityRecord;
import com.stylefeng.guns.modular.system.dao.TCheckCarActivityRecordMapper;
import com.stylefeng.guns.modular.system.service.ITCheckCarActivityRecordService;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 代检车活动优惠券领取记录表 服务实现类
 * </p>
 *
 * @author mitao
 * @since 2025-08-02
 */
@Service
public class TCheckCarActivityRecordServiceImpl extends ServiceImpl<TCheckCarActivityRecordMapper, TCheckCarActivityRecord> implements ITCheckCarActivityRecordService {
 
}