LocationDisplay.java
448 Bytes
package com.huaheng.api.tv.domain;
import lombok.Data;
/**
* 库位看板实体类
* @author xcq
*/
@Data
public class LocationDisplay {
/**
* 库位状态值
*/
private String userDef3;
/**
* 库位状态值
*/
private String text;
/**
* 数量
*/
private Integer numCount;
/**
* 层
*/
private Integer iLayer;
/**
* 列
*/
private Integer column;
}