feat(electron): 实现系统托盘和关闭行为配置功能

- 添加系统托盘创建和销毁逻辑- 实现窗口关闭行为配置(退出/最小化/托盘)
- 添加配置文件读写功能
- 实现下载取消和清理功能
- 添加待更新文件检查机制
- 优化文件下载进度和错误处理
- 添加自动更新配置选项- 实现平滑滚动动画效果
- 添加试用期过期类型检查
-优化VIP状态刷新逻辑
This commit is contained in:
2025-10-17 14:17:47 +08:00
parent 6e1b4d00de
commit 07e34c35c8
19 changed files with 1545 additions and 467 deletions

View File

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