5 changed files with 42 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||||
|
package com.yxt.warehouse.biz.warehouseinventory; |
||||
|
|
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author Fan |
||||
|
* @description |
||||
|
* @date 2024/8/6 14:44 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GoodsCountVo { |
||||
|
|
||||
|
@ApiModelProperty("实际库存") |
||||
|
private String inventoryCount; // 库存数量
|
||||
|
@ApiModelProperty("可分配库存") |
||||
|
private String allocateCount; // 可分配库存
|
||||
|
@ApiModelProperty("可用库存") |
||||
|
private String useCount; // 可用库存
|
||||
|
} |
Loading…
Reference in new issue