feat(wms): 采购计划单新增供应商和合同信息

- 在 WmsPurchasePlanDetail 和 WmsPurchasePlanDetailBo 中添加供应商 ID 和合同 ID 字段
- 更新 WmsPurchasePlanDetailMapper 和 XML 映射文件以支持新字段
- 在 WmsPurchasePlanDetailVo 中添加供应商名称和合同编号字段
This commit is contained in:
JR
2025-08-12 13:16:38 +08:00
parent 9cc9daa35a
commit b2df5b517e
5 changed files with 47 additions and 3 deletions

View File

@@ -63,4 +63,14 @@ public class WmsPurchasePlanDetail extends BaseEntity {
@TableLogic
private Integer delFlag;
/**
* 供应商ID
*/
private Long supplierId;
/**
* 合同ID
*/
private Long contractId;
}