From dda14ca27976422c17e2ee7733ee9c0816c4d5d2 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期二, 11 十月 2022 13:02:35 +0800 Subject: [PATCH] # --- src/main/java/com/zy/asrs/utils/Utils.java | 33 ++++++++++++--------------------- 1 files changed, 12 insertions(+), 21 deletions(-) diff --git a/src/main/java/com/zy/asrs/utils/Utils.java b/src/main/java/com/zy/asrs/utils/Utils.java index ac35d91..f463cff 100644 --- a/src/main/java/com/zy/asrs/utils/Utils.java +++ b/src/main/java/com/zy/asrs/utils/Utils.java @@ -2,6 +2,7 @@ import com.core.common.Arith; import com.core.common.Cools; +import com.zy.core.enums.SteABType; import com.zy.core.properties.SlaveProperties; import java.text.DecimalFormat; @@ -36,8 +37,15 @@ } } + public static Integer getGroupRow(String locNo){ + int row = getRow(locNo); + return getGroupRow(row); + } + public static Integer getGroupRow(Integer row) { switch (row) { + case 0: + return 0; case 1: case 2: case 3: @@ -71,30 +79,9 @@ } - public static Integer getGroupRow(String locNo){ - int row = getRow(locNo); - return getGroupRow(row); - } - - - - - - - - - - - // ------------------------------------------------------------------------------------------------------------------- - - - - - - @@ -254,6 +241,10 @@ } + public static String getLocNo(Number row, Number bay, Number lev) { + return zerofill(String.valueOf(row), 2) + zerofill(String.valueOf(bay), 3) + zerofill(String.valueOf(lev), 2); + } + public static void main(String[] args) { SlaveProperties slaveProperties = new SlaveProperties(); slaveProperties.setDoubleDeep(true); -- Gitblit v1.9.1