自动化立体仓库 - WMS系统
*
L
2025-07-10 134dce5c589094fdad6c572fd56770922d9692a9
src/main/java/com/zy/asrs/entity/WaitPakin.java
@@ -13,6 +13,7 @@
import java.io.Serializable;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
@Data
@TableName("cust_wait_pakin")
@@ -67,7 +68,7 @@
    @ApiModelProperty(value= "单位")
    private String unit;
    @ApiModelProperty(value= "单价")
    @ApiModelProperty(value= "单价 长度")
    private Double price;
    @ApiModelProperty(value= "sku")
@@ -106,7 +107,7 @@
    @ApiModelProperty(value= "长度")
    private Double length;
    @ApiModelProperty(value= "体积")
    @ApiModelProperty(value= "体积  毛重")
    private Double volume;
    @ApiModelProperty(value= "三方编码")
@@ -244,10 +245,10 @@
    public String getBrand$(){
        BasBoxTypeService basBoxTypeService = SpringUtils.getBean(BasBoxTypeService.class);
        BasBoxType basBoxType = basBoxTypeService.selectOne(new EntityWrapper<BasBoxType>().eq("box_type", this.brand));
        if (!Cools.isEmpty(basBoxType)){
        List<BasBoxType> basBoxTypes = basBoxTypeService.selectList(new EntityWrapper<BasBoxType>().eq("box_type", this.brand).orderBy("id", true));
        for (BasBoxType basBoxType:basBoxTypes){
            return String.valueOf(basBoxType.getBoxSpecs());
        }
        return null;
        return this.brand;
    }
}