feiyu02
2025-09-30 6904763f0e74d9a9fa4dbc39f635d2aee39416c6
src/main/kotlin/cn/flightfeather/supervision/lightshare/web/LedgerController.kt
@@ -63,6 +63,15 @@
        @ApiParam("台账图片") @RequestPart("images") files:Array<MultipartFile>
    ) = ledgerService.uploadLedger(userId, ledgerVoList, files)
    @ApiOperation("上传不涉及台账")
    @PostMapping("/upload/noLedger")
    fun uploadNoLedger(
        @RequestParam("userId") userId: String,
        @RequestParam("time") time: String,
        @RequestParam(required = false) remark: String?,
        @RequestBody ledgerIdList: List<Int>
    ) = ledgerService.uploadNoLedger(userId, time, remark, ledgerIdList)
    @ApiOperation(value = "获取某个台账显示图标url")
    @GetMapping("/{userId}/img")
    fun getLedgerImg(