You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
603 B
55 lines
603 B
package com.shkj.wms.vo;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
/**
|
|
* 车型颜色库位数及空托数量
|
|
*
|
|
* @author zjx
|
|
* @date 2024-04-18
|
|
*/
|
|
@Data
|
|
public class SysStockVCLocationVo {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 车型
|
|
*/
|
|
private String vehicheModel;
|
|
|
|
/**
|
|
* 占用数量
|
|
*/
|
|
private String stockqty;
|
|
|
|
|
|
|
|
/**
|
|
* 库位总数
|
|
*/
|
|
private Integer locQty;
|
|
|
|
/**
|
|
* 巷道
|
|
*/
|
|
private String tunnel;
|
|
|
|
/**
|
|
* 颜色
|
|
*/
|
|
private String color;
|
|
|
|
/**
|
|
* 剩余货位数
|
|
*/
|
|
private Integer emptyLocQty;
|
|
|
|
/**
|
|
* 空托数量
|
|
*/
|
|
|
|
private Integer emptyConQty;
|
|
|
|
|
|
}
|
|
|