opt: 附件上传/删除

This commit is contained in:
2025-11-21 17:02:48 +08:00
parent 5af4d27532
commit 738deb04df
15 changed files with 376 additions and 36 deletions

View File

@@ -91,4 +91,9 @@ public class DevFileApiProvider implements DevFileApi {
.map(JSONUtil::parseObj)
.orElse(new JSONObject());
}
@Override
public void deleteById(String fileId) {
devFileService.removeById(fileId);
}
}