💄 修改主机配置模态框样式.

This commit is contained in:
lijiahangmax
2024-03-01 00:35:55 +08:00
parent 1c6a38d5d9
commit c48e48ab72
10 changed files with 233 additions and 169 deletions

View File

@@ -147,7 +147,6 @@ public class DataExtraServiceImpl implements DataExtraService {
@Override
public Map<Long, String> getExtraItemValuesByCache(Long userId, String type, String item) {
// todo TEST
// 查询缓存
String key = DataExtraCacheKeyDefine.DATA_EXTRA.format(userId, type, item);
Map<String, String> entities = RedisMaps.entities(key);
@@ -187,7 +186,6 @@ public class DataExtraServiceImpl implements DataExtraService {
@Override
public Integer deleteByUserId(Long userId) {
// 查询数据 TODO TEST
List<DataExtraDO> list = this.getCacheSelectWrapper()
.eq(DataExtraDO::getUserId, userId)
.then()
@@ -204,7 +202,6 @@ public class DataExtraServiceImpl implements DataExtraService {
@Override
public Integer deleteByRelId(String type, Long relId) {
// 查询数据 TODO TEST
List<DataExtraDO> list = this.getCacheSelectWrapper()
.eq(DataExtraDO::getType, type)
.eq(DataExtraDO::getRelId, relId)