#
vincentlu
18 小时以前 eef871306cac9e48049005482c24aa48870b080e
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Loc.java
@@ -3,6 +3,7 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonAlias;
import com.zy.acs.framework.common.Cools;
import com.zy.acs.framework.common.SpringUtils;
import com.zy.acs.manager.manager.service.CodeService;
@@ -78,19 +79,22 @@
     * 排
     */
    @ApiModelProperty(value= "排")
    private Integer row;
    @JsonAlias({"row", "row_no"})
    private Integer rowNo;
    /**
     * 列
     */
    @ApiModelProperty(value= "列")
    private Integer bay;
    @JsonAlias({"bay", "bay_no"})
    private Integer bayNo;
    /**
     * 层
     */
    @ApiModelProperty(value= "层")
    private Integer lev;
    @JsonAlias({"lev", "lev_no"})
    private Integer levNo;
    /**
     * 库位码
@@ -160,7 +164,7 @@
    public Loc() {}
    public Loc(String uuid,Long zoneId,String locNo,String name,Long code,Long locSts,Double offset,Integer row,Integer bay,Integer lev,String zpallet,Long locType,Integer status,Integer deleted,Long tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
    public Loc(String uuid,Long zoneId,String locNo,String name,Long code,Long locSts,Double offset,Integer rowNo,Integer bayNo,Integer levNo,String zpallet,Long locType,Integer status,Integer deleted,Long tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) {
        this.uuid = uuid;
        this.zoneId = zoneId;
        this.locNo = locNo;
@@ -168,9 +172,9 @@
        this.code = code;
        this.locSts = locSts;
        this.offset = offset;
        this.row = row;
        this.bay = bay;
        this.lev = lev;
        this.rowNo = rowNo;
        this.bayNo = bayNo;
        this.levNo = levNo;
        this.zpallet = zpallet;
        this.locType = locType;
        this.status = status;