feat(electron): 实现系统托盘和关闭行为配置功能
- 添加系统托盘创建和销毁逻辑- 实现窗口关闭行为配置(退出/最小化/托盘) - 添加配置文件读写功能 - 实现下载取消和清理功能 - 添加待更新文件检查机制 - 优化文件下载进度和错误处理 - 添加自动更新配置选项- 实现平滑滚动动画效果 - 添加试用期过期类型检查 -优化VIP状态刷新逻辑
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.system.domain.BanmaAccount;
|
||||
|
||||
@@ -8,10 +7,13 @@ import com.ruoyi.system.domain.BanmaAccount;
|
||||
*/
|
||||
public interface IBanmaAccountService {
|
||||
List<BanmaAccount> listSimple();
|
||||
List<BanmaAccount> listSimple(String clientUsername);
|
||||
Long saveOrUpdate(BanmaAccount entity);
|
||||
Long saveOrUpdate(BanmaAccount entity, String clientUsername);
|
||||
void remove(Long id);
|
||||
boolean refreshToken(Long id);
|
||||
void refreshAllTokens();
|
||||
String validateAndGetToken(String username, String password);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user