1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.doumee.service.business;
|
| import com.doumee.dao.business.model.DouyinVerifyLog;
|
| /**
| * 抖音验券操作日志 Service
| *
| * @author rk
| * @date 2026/06/25
| */
| public interface DouyinVerifyLogService {
|
| /**
| * 落一条操作日志
| */
| void record(DouyinVerifyLog log);
| }
|
|