From b176072388747abb438990157bfa305b215b4b90 Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期二, 14 四月 2026 21:59:39 +0800
Subject: [PATCH] 我们现在讨论一下系统找库位方案, 如何实现,对现有找库位规则进行整改,数据库也要整改 1、要能方便的填写单伸堆垛机或双伸堆垛机的深浅库位配置 2、根据设备状态分配库位,离线设备不分配 3、库位分配要均衡到每一个设备  4、库位高度需要匹配到对应库位信息,低库位能向上兼容  5、空托盘优先放在locType2库位=1的库位,没有这种库位了,允许放到其他库位 6、给入库站点设置有限去那些堆垛机,其次去那些堆垛机,弄成页面可以配置入库站点 7、在系统配置新增优先放前几列的配置,当入库的货物是高频货物时放在前几列 8、组托中会标识该托盘是高频还是低频,如果是高频则从前往后找库位,如果是低频则从后往前找库位 9、找库位时locMast中whsType字段无用

---
 src/main/java/com/zy/asrs/entity/RowLastno.java |  102 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 102 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/zy/asrs/entity/RowLastno.java b/src/main/java/com/zy/asrs/entity/RowLastno.java
index 82eafd2..8be0bc9 100644
--- a/src/main/java/com/zy/asrs/entity/RowLastno.java
+++ b/src/main/java/com/zy/asrs/entity/RowLastno.java
@@ -4,6 +4,8 @@
 import com.baomidou.mybatisplus.annotations.TableId;
 import com.baomidou.mybatisplus.annotations.TableName;
 import com.baomidou.mybatisplus.enums.IdType;
+import com.zy.asrs.service.BasWhsService;
+import com.zy.asrs.service.RowLastnoTypeService;
 import com.zy.system.entity.User;
 import com.zy.system.service.UserService;
 import com.core.common.Cools;
@@ -40,6 +42,13 @@
     @ApiModelProperty(value= "褰撳墠鎺掑彿")
     @TableField("current_row")
     private Integer currentRow;
+
+    /**
+     * 褰撳墠鍫嗗灈鏈哄彿
+     */
+    @ApiModelProperty(value= "褰撳墠鍫嗗灈鏈哄彿")
+    @TableField("current_crn_no")
+    private Integer currentCrnNo;
 
     /**
      * 璧峰鎺掑彿
@@ -135,6 +144,41 @@
     @TableField("sign_type_other_boolean")
     private String signTypeOtherBoolean;
 
+    /**
+     * 鍏跺畠鏍囪绫诲埆锛堟槸鍚﹁緭閫佺嚎浜掗�氾級
+     */
+    @ApiModelProperty(value= "鍏ュ簱绔欑偣闆嗗悎")
+    @TableField("sta_no_list")
+    private String staNoList;
+
+    /**
+     * 搴撶被鍨婭D
+     */
+    @ApiModelProperty(value= "搴撶被鍨婭D")
+    @TableField("type_id")
+    private Integer typeId;
+
+    /**
+     * 鐩镐技鐗╂枡寮�鍏�
+     */
+    @ApiModelProperty(value= "鐩镐技鐗╂枡寮�鍏�")
+    @TableField("be_similar")
+    private String beSimilar;
+
+    /**
+     * 鏄惁瀛樺湪鐐逛綅
+     */
+    @ApiModelProperty(value= "鏄惁瀛樺湪鐐逛綅")
+    @TableField("point_switch")
+    private String pointSwitch;
+
+    /**
+     * 绌烘澘闈犺繎鎽嗘斁
+     */
+    @ApiModelProperty(value= "绌烘澘闈犺繎鎽嗘斁")
+    @TableField("empty_similar")
+    private String emptySimilar;
+
     public RowLastno() {}
 
     public RowLastno(String wrkMk,Integer currentRow,Integer sRow,Integer eRow,Integer crnQty,String memo,Long modiUser,Date modiTime,Long appeUser,Date appeTime,Integer limintLoc) {
@@ -187,6 +231,14 @@
 
     public void setCurrentRow(Integer currentRow) {
         this.currentRow = currentRow;
+    }
+
+    public Integer getCurrentCrnNo() {
+        return currentCrnNo;
+    }
+
+    public void setCurrentCrnNo(Integer currentCrnNo) {
+        this.currentCrnNo = currentCrnNo;
     }
 
     public Integer getsRow() {
@@ -332,4 +384,54 @@
         this.signTypeOtherBoolean = signTypeOtherBoolean;
     }
 
+    public String getStaNoList() {
+        return staNoList;
+    }
+
+    public void setStaNoList(String StaNoList) {
+        this.staNoList = StaNoList;
+    }
+
+    public Integer getTypeId() {
+        return typeId;
+    }
+    public String getTypeId$() {
+        RowLastnoTypeService rowLastnoTypeService = SpringUtils.getBean(RowLastnoTypeService.class);
+        RowLastnoType rowLastnoType = rowLastnoTypeService.selectById(this.typeId.longValue());
+        BasWhsService basWhsService = SpringUtils.getBean(BasWhsService.class);
+        BasWhs basWhs = basWhsService.selectById(rowLastnoType.getType().longValue());
+        if (!Cools.isEmpty(rowLastnoType)){
+            return rowLastnoType.getTypeName()+"<==>"+rowLastnoType.getMemo()+"<==>"+basWhs.getWhsDesc();
+        }
+        return typeId.toString();
+    }
+
+    public void setTypeId(Integer typeId) {
+        this.typeId = typeId;
+    }
+
+    public String getBeSimilar() {
+        return beSimilar;
+    }
+
+    public void setBeSimilar(String beSimilar) {
+        this.beSimilar = beSimilar;
+    }
+
+    public String getPointSwitch() {
+        return pointSwitch;
+    }
+
+    public void setPointSwitch(String pointSwitch) {
+        this.pointSwitch = pointSwitch;
+    }
+
+    public String getEmptySimilar() {
+        return emptySimilar;
+    }
+
+    public void setEmptySimilar(String emptySimilar) {
+        this.emptySimilar = emptySimilar;
+    }
+
 }

--
Gitblit v1.9.1