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); } }