huangzhen
2023-10-17 b4deb216f47ca91809da1283e1c7fe882844abab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.gkhy.fourierSpecialGasMonitor.application.account.service;
 
import com.gkhy.fourierSpecialGasMonitor.application.account.dto.respDto.TokenInfoDto;
import com.gkhy.fourierSpecialGasMonitor.commons.domain.Result;
 
public interface TokenAppService {
 
    Result<TokenInfoDto> setToken(Long uid);
 
    Result resetTokenTime(Long uid);
 
    Result removeToken(Long uid);
 
    Result<TokenInfoDto> getToken(Long uid);
}