PDACheck.java
336 Bytes
package com.huaheng.api.erp.domain;
import lombok.Data;
import java.util.List;
@Data
public class PDACheck {
//箱数
Integer boxCodeQty;
//片数
Integer chipCodeQty;
//当前托盘状态
String information;
//垛型
String cribType;
List<MaterialInformation> materialInformationList;
}