feat(oa): 添加退库单相关功能

- 在 ISysOaWarehouseMasterService 接口中添加 updateWithdrawlock 方法
- 在 SysOaWarehouseMaster 模型中添加 withdrawlock 字段
- 在 SysOaWarehouseMasterBo 和 SysOaWarehouseMasterVo 中添加 withdrawlock 属性
- 在 SysOaWarehouseMasterController 中添加更新 withdrawlock 的接口
- 在 SysOaWarehouseMasterServiceImpl 中实现 updateWithdrawlock 方法和新的查询方法
This commit is contained in:
2025-08-19 16:37:54 +08:00
parent 9093400922
commit 5148225c16
6 changed files with 36 additions and 1 deletions

View File

@@ -60,5 +60,6 @@ public class SysOaWarehouseMaster extends BaseEntity {
private Integer isLike;
private Long status;
private Integer returnType;
private Integer withdrawlock;
}

View File

@@ -76,4 +76,6 @@ public class SysOaWarehouseMasterBo extends BaseEntity {
private Integer returnType;
private Integer withdrawlock;
}

View File

@@ -87,6 +87,7 @@ public class SysOaWarehouseMasterVo {
* 日志操作次数
*/
private Integer logCount;
private Integer withdrawlock;
}