refactor(oa): 仓库主表相关重构

- 移除了 ISysOaWarehouseMasterService 中的 updateReturnType 和 updateWithdrawLock 方法
- 更新了 SysOaWarehouseMaster、SysOaWarehouseMasterBo 和 SysOaWarehouseMasterVo 中的 withdrawlock 字段,改为 withdrawLock
- 删除了 SysOaWarehouseMasterController 中的 updateReturnType 和 updateWithdrawLock 接口
- 更新了 SysOaWarehouseMasterMapper.xml 中的相关 SQL 语句- 移除了 SysOaWarehouseMasterServiceImpl 中的 updateReturnType 和 updateWithdrawLock 方法
This commit is contained in:
2025-08-19 16:50:44 +08:00
parent 268a7a3117
commit e2500e06df
7 changed files with 9 additions and 31 deletions

View File

@@ -134,16 +134,6 @@ public class SysOaWarehouseMasterController extends BaseController {
return toAjax(iSysOaWarehouseMasterService.updateMasterAndInsertBatchWare(bo));
}
// 修改returnType
@PutMapping("/returnType")
public R<Void> updateReturnType(@RequestParam Long masterId, @RequestParam Integer returnType) {
return toAjax(iSysOaWarehouseMasterService.updateReturnType(masterId, returnType));
}
// 修改withdrawlock
@PutMapping("/withdrawLock")
public R<Void> updateWithdrawLock(@RequestParam Long masterId, @RequestParam Integer withdrawlock) {
return toAjax(iSysOaWarehouseMasterService.updateWithdrawLock(masterId, withdrawlock));
}
// 明细退库
@PostMapping("/returnDetail")
public R<Void> returnDetail(@RequestBody List<ReturnDetailBo> returnDetails) {