Vue3+ElementPlus+Koa2 全栈开发后台系统

358 阅读1分钟

Vue3+ElementPlus+Koa2 全栈开发后台系统

v:ititit111222333

    public Result<Long> insert(@Valid @RequestBody @ApiParam(value = "数据对象", required = true) InventoryTakeDetailVO vo) {
        log.info("====> /api/storage/inventory-take-detail/insert, vo=" + JsonUtil.toJson(vo));
        return super.insert(vo, null);
    }
)
    public Result<Integer> update(@Valid @RequestBody @ApiParam(value = "数据对象", required = true) InventoryTakeDetailVO vo) {
        log.info("====> /api/storage/inventory-take-detail/update, vo=" + JsonUtil.toJson(vo));
        return super.update(vo, null);
    }