|
|
@ -1,10 +1,11 @@ |
|
|
|
package org.nl.wms.basedata_manage.service.dto; |
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
import org.nl.wms.warehouse_management.service.dao.GroupPlate; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
@Data |
|
|
|
public class StrategyStructMaterialVO extends GroupPlate { |
|
|
|
public class StrategyStructMaterialVO { |
|
|
|
|
|
|
|
private String sect_code; |
|
|
|
/** |
|
|
@ -16,4 +17,38 @@ public class StrategyStructMaterialVO extends GroupPlate { |
|
|
|
*/ |
|
|
|
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; |
|
|
|
|
|
|
|
} |
|
|
|