fix: 调整 pcap id 生成格式

This commit is contained in:
shizhendong
2024-09-05 14:45:49 +08:00
parent 6bed4ad795
commit 5d77111530

View File

@@ -144,7 +144,7 @@ public class PcapServiceImpl extends ServiceImpl<PcapDao, PcapEntity> implements
PcapEntity entity = new PcapEntity();
try {
String pcapId = IdWorker.get32UUID();
String pcapId = T.StrUtil.uuid();
entity.setId(pcapId);
entity.setName(fileResource.getFilename());
entity.setDescription(description);