add:增加出入库分配规则调用

This commit is contained in:
zhangzq
2025-06-26 17:49:33 +08:00
parent 3ff9e2ccda
commit 137688272c
2 changed files with 42 additions and 2 deletions

View File

@@ -1,10 +1,11 @@
package org.nl.wms.basedata_manage.service.dto; package org.nl.wms.basedata_manage.service.dto;
import lombok.Data; import lombok.Data;
import org.nl.wms.warehouse_management.service.dao.GroupPlate;
import java.math.BigDecimal;
@Data @Data
public class StrategyStructMaterialVO extends GroupPlate { public class StrategyStructMaterialVO {
private String sect_code; private String sect_code;
/** /**
@@ -16,4 +17,38 @@ public class StrategyStructMaterialVO extends GroupPlate {
*/ */
private String lock_type; private String lock_type;
/**
* 载具编码
*/
private String storagevehicle_code;
/**
* 物料标识
*/
private String material_code;
/**
* 批次
*/
private String pcsn;
/**
* 组盘数量
*/
private BigDecimal qty;
/**
* 当前仓库冻结数
*/
private BigDecimal frozen_qty;
/**
* 来源单据号
*/
private String ext_code;
/**
* 来源单据类型
*/
private String ext_type;
} }

View File

@@ -52,6 +52,11 @@ public class GroupPlate implements Serializable {
*/ */
private BigDecimal qty; private BigDecimal qty;
/**
* 冻结数量
*/
private BigDecimal frozen_qty;
/** /**
* 备注 * 备注
*/ */