rk
5 天以前 84ae873e1c19ca7d2ffc5c98248285706dae818b
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
package com.doumee.service.business.impl;
 
import com.doumee.dao.business.DouyinVerifyLogMapper;
import com.doumee.dao.business.model.DouyinVerifyLog;
import com.doumee.service.business.DouyinVerifyLogService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
/**
 * 抖音验券操作日志 Service 实现
 *
 * @author rk
 * @date 2026/06/25
 */
@Service
public class DouyinVerifyLogServiceImpl implements DouyinVerifyLogService {
 
    @Autowired
    private DouyinVerifyLogMapper douyinVerifyLogMapper;
 
    @Override
    public void record(DouyinVerifyLog log) {
        if (log == null) {
            return;
        }
        douyinVerifyLogMapper.insert(log);
    }
}