From 9245059bbd1202e8e59486e5f124d7819760818a Mon Sep 17 00:00:00 2001
From: cl <1442464845@qq.com>
Date: 星期一, 23 三月 2026 18:59:22 +0800
Subject: [PATCH] 热力图
---
src/main/java/com/zy/asrs/entity/ViewLocMapDto.java | 49 +++++++++++++++++++++++++++++++++++++++----------
1 files changed, 39 insertions(+), 10 deletions(-)
diff --git a/src/main/java/com/zy/asrs/entity/ViewLocMapDto.java b/src/main/java/com/zy/asrs/entity/ViewLocMapDto.java
index 2d5533f..523acdf 100644
--- a/src/main/java/com/zy/asrs/entity/ViewLocMapDto.java
+++ b/src/main/java/com/zy/asrs/entity/ViewLocMapDto.java
@@ -10,7 +10,12 @@
// 鍒�
private Integer bay1;
// 搴撲綅鐘舵��
- private String locType;
+ private String locSts;
+ // 搴撳瓨鏄庣粏鍟嗗搧鍚嶇О锛堝鍝侀�楀彿鎷兼帴锛�
+ private String maktx;
+ // private String barcodes;
+ private String itemBarcodes;
+ private String pltBarcodes;
// 鑳屾櫙鑹�
private String bgc = "#fff";
// 瀛椾綋棰滆壊
@@ -19,10 +24,10 @@
public ViewLocMapDto() {
}
- public ViewLocMapDto(String locNo, Integer bay1, String locType) {
+ public ViewLocMapDto(String locNo, Integer bay1, String locSts) {
this.locNo = locNo;
this.bay1 = bay1;
- this.locType = locType;
+ this.locSts = locSts;
}
public String getLocNo() {
@@ -41,13 +46,37 @@
this.bay1 = bay1;
}
- public String getLocType() {
- return locType;
+ public String getLocSts() {
+ return locSts;
}
- public void setLocType(String locType) {
- this.locType = locType;
- switch (locType){
+ public String getMaktx() {
+ return maktx;
+ }
+
+ public void setMaktx(String maktx) {
+ this.maktx = maktx;
+ }
+
+ public String getItemBarcodes() {
+ return itemBarcodes;
+ }
+
+ public void setItemBarcodes(String itemBarcodes) {
+ this.itemBarcodes = itemBarcodes;
+ }
+
+ public String getPltBarcodes() {
+ return pltBarcodes;
+ }
+
+ public void setPltBarcodes(String pltBarcodes) {
+ this.pltBarcodes = pltBarcodes;
+ }
+
+ public void setLocSts(String locSts) {
+ this.locSts = locSts;
+ switch (locSts){
case "D":
this.bgc = "#00B271";
this.color = "#fff";
@@ -70,11 +99,11 @@
break;
case "R":
this.bgc = "#D7FFF0";
- this.color = "#fff";
+ this.color = "#000";
break;
case "S":
this.bgc = "#F0DAD2";
- this.color = "#fff";
+ this.color = "#000";
break;
case "X":
this.bgc = "#bac296";
--
Gitblit v1.9.1