From 6fe4619fd97c6aa90a0bfeffbfa62603691a1ab4 Mon Sep 17 00:00:00 2001 From: zhang <zc857179121@qq.com> Date: 星期四, 29 五月 2025 09:15:03 +0800 Subject: [PATCH] 1 --- src/main/java/com/zy/asrs/entity/LocDetl.java | 27 ++++++++++++++++++++++++--- 1 files changed, 24 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/LocDetl.java b/src/main/java/com/zy/asrs/entity/LocDetl.java index ba30f0f..1bf9921 100644 --- a/src/main/java/com/zy/asrs/entity/LocDetl.java +++ b/src/main/java/com/zy/asrs/entity/LocDetl.java @@ -4,8 +4,11 @@ import com.alibaba.excel.annotation.ExcelProperty; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableName; +import com.baomidou.mybatisplus.mapper.EntityWrapper; import com.core.common.Cools; import com.core.common.SpringUtils; +import com.zy.asrs.service.BasProcessProceduresService; +import com.zy.asrs.service.BasQualityTestingService; import com.zy.asrs.service.LocMastService; import com.zy.asrs.service.LocOwnerService; import com.zy.common.utils.Synchro; @@ -188,21 +191,21 @@ */ @ApiModelProperty(value= "澶囩敤1") @TableField("box_type1") - private String boxType1 = "1"; + private String boxType1 = ""; /** * 澶囩敤2 */ @ApiModelProperty(value= "澶囩敤2") @TableField("box_type2") - private String boxType2 = "1"; + private String boxType2 = ""; /** * 澶囩敤3 */ @ApiModelProperty(value= "澶囩敤3") @TableField("box_type3") - private String boxType3 = "1"; + private String boxType3 = ""; /** * 鏄惁鍐荤粨 @@ -334,4 +337,22 @@ } } + public String getBoxType1$(){ + BasProcessProceduresService service = SpringUtils.getBean(BasProcessProceduresService.class); + BasProcessProcedures processProcedures = service.selectOne(new EntityWrapper<BasProcessProcedures>().eq("box_type", this.boxType1)); + if (!Cools.isEmpty(processProcedures)){ + return String.valueOf(processProcedures.getBoxSpecs()); + } + return this.boxType1; + } + + public String getBoxType2$(){ + BasQualityTestingService service = SpringUtils.getBean(BasQualityTestingService.class); + BasQualityTesting basQualityTesting = service.selectOne(new EntityWrapper<BasQualityTesting>().eq("box_type", this.boxType1)); + if (!Cools.isEmpty(basQualityTesting)){ + return String.valueOf(basQualityTesting.getBoxSpecs()); + } + return this.boxType1; + } + } -- Gitblit v1.9.1