自动化立体仓库 - WMS系统
#
zwl
5 天以前 49f4a0e254c4c2b18692f838b268595201fc17f7
src/main/java/com/zy/asrs/entity/LocDetl.java
@@ -11,6 +11,7 @@
import com.zy.asrs.service.BasQualityTestingService;
import com.zy.asrs.service.LocMastService;
import com.zy.asrs.service.LocOwnerService;
import com.zy.asrs.utils.LocAliasUtils;
import com.zy.common.utils.Synchro;
import com.zy.system.entity.User;
import com.zy.system.service.UserService;
@@ -164,6 +165,57 @@
    @ApiModelProperty(value= "备注")
    private String memo;
    @ApiModelProperty(value= "入库抓拍照片")
    private String pic;
    /**
     * 集装箱号
     */
    @ApiModelProperty(value= "集装箱号")
    @ExcelProperty("集装箱号")
    @TableField("container_no")
    private String containerNo;
    /**
     * TEU
     */
    @ApiModelProperty(value= "TEU")
    @ExcelProperty("TEU")
    @TableField("teu")
    private Integer teu;
    /**
     * 车牌号
     */
    @ApiModelProperty(value= "车牌号")
    @ExcelProperty("车牌号")
    @TableField("plate_no")
    private String plateNo;
    /**
     * 车次号
     */
    @ApiModelProperty(value= "车次号")
    @ExcelProperty("车次号")
    @TableField("train_no")
    private String trainNo;
    /**
     * 货物频次
     */
    @ApiModelProperty(value= "货物频次:1=高频,2=低频")
    @ExcelProperty("货物频次")
    @TableField("freq_type")
    private Integer freqType;
    /**
     * 立方数
     */
    @ApiModelProperty(value= "立方数,单位:立方米")
    @ExcelProperty("立方数")
    @TableField("cube_number")
    private Double cubeNumber;
    /**
     * 拥有者
     */
@@ -221,12 +273,16 @@
    private Integer frozen;
    public String getLocNo$(){
        return getLocAlias();
    }
    public String getLocAlias(){
        LocMastService service = SpringUtils.getBean(LocMastService.class);
        LocMast locMast = service.selectById(this.locNo);
        if (!Cools.isEmpty(locMast)){
            return String.valueOf(locMast.getLocNo());
            return LocAliasUtils.displayLocNo(locMast);
        }
        return null;
        return this.locNo;
    }
    public String getOwner$(){
        LocOwnerService service = SpringUtils.getBean(LocOwnerService.class);