parent
49081454a9
commit
a494b2cc7f
@ -0,0 +1,67 @@ |
||||
package com.shkj.wms.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
|
||||
/** |
||||
* 货位资料视图对象 |
||||
* |
||||
* @author lch |
||||
* @date 2022-04-23 |
||||
*/ |
||||
@Data |
||||
public class BaseLocationMapListVo implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
private Integer w; |
||||
|
||||
private Integer h; |
||||
|
||||
private Integer x; |
||||
|
||||
private Integer y; |
||||
|
||||
private String i; |
||||
|
||||
private String warehouse; |
||||
|
||||
/** |
||||
* 禁用状态 |
||||
*/ |
||||
private String isDel; |
||||
|
||||
/** |
||||
* 自增id |
||||
*/ |
||||
private Long id; |
||||
|
||||
|
||||
/** |
||||
* 货位ID |
||||
*/ |
||||
private String locationCode; |
||||
|
||||
|
||||
/** |
||||
* 货位名称 |
||||
*/ |
||||
private String locationName; |
||||
|
||||
/** |
||||
* 巷道 |
||||
*/ |
||||
private String tunnel; |
||||
|
||||
/** |
||||
* 货位状态 |
||||
*/ |
||||
private String locationStatus; |
||||
|
||||
/** |
||||
* 货位类型 |
||||
*/ |
||||
private String type; |
||||
|
||||
} |
||||
Loading…
Reference in new issue