18586361686
2025-05-28 e5654691ff1fb0a51a53eecafaabaf6aadc4fdc8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package tech.aiflowy.system.service;
 
import com.mybatisflex.core.service.IService;
import tech.aiflowy.common.domain.Result;
import tech.aiflowy.system.entity.SysToken;
 
import java.io.Serializable;
 
/**
 * iframe 嵌入用 Token 表 服务层。
 *
 * @author Administrator
 * @since 2025-05-26
 */
public interface SysTokenService extends IService<SysToken> {
 
    Result saveGenerateToken();
 
    Result updateToken(SysToken sysToken);
 
    void delete(Serializable id);
}