parent
2138402092
commit
43c7ae69ba
7 changed files with 214 additions and 0 deletions
@ -0,0 +1,27 @@ |
||||
package org.springblade.wms.pojo.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* @version 1.0 |
||||
* @program: jonhon-mes-svr |
||||
* @ClassName GraphiteStockKitVO |
||||
* @description: |
||||
* @autor: WuSiYu |
||||
* @create 2026-06-08 16:09 |
||||
**/ |
||||
@Data |
||||
public class GraphiteStockKitVO { |
||||
|
||||
/** |
||||
* 齐套数量 |
||||
*/ |
||||
private Integer completeQuantity; |
||||
|
||||
/** |
||||
* (子物料/关联物料) |
||||
*/ |
||||
private List<StockKitGoodsDetailVO> stockKitGoodsDetailList; |
||||
} |
||||
@ -0,0 +1,47 @@ |
||||
package org.springblade.wms.pojo.vo; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* @version 1.0 |
||||
* @program: jonhon-mes-svr |
||||
* @ClassName StockKitGoodsDetailVO |
||||
* @description: |
||||
* @autor: WuSiYu |
||||
* @create 2026-06-08 16:12 |
||||
**/ |
||||
@Data |
||||
public class StockKitGoodsDetailVO { |
||||
|
||||
/** |
||||
* 物料编号 |
||||
*/ |
||||
@Schema(description = "物料编号") |
||||
private String subCode; |
||||
|
||||
/** |
||||
* 物料名称 |
||||
*/ |
||||
@Schema(description = "物料名称") |
||||
private String subName; |
||||
|
||||
/** |
||||
* 单套数量 |
||||
*/ |
||||
@Schema(description = "单套数量") |
||||
private Double singleQuantity; |
||||
|
||||
/** |
||||
* 库存数量 |
||||
*/ |
||||
@Schema(description = "库存数量") |
||||
private Double quantity; |
||||
|
||||
/** |
||||
* 占用数量 |
||||
*/ |
||||
@Schema(description = "占用数量") |
||||
private Double occupyQuantity; |
||||
|
||||
} |
||||
Loading…
Reference in new issue