qiangxuan 6 сар өмнө
parent
commit
c41cc22743

+ 1 - 2
zgztBus/jeecg-module-sbm/src/main/java/org/jeecg/modules/actualControl/billetActual/billetActual/controller/BilletBasicInfoController.java

@@ -22,7 +22,6 @@ import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 import java.util.Arrays;
 import java.util.List;
-import java.util.Map;
 
 /**
  * @Description: 钢坯基础信息
@@ -178,7 +177,7 @@ public class BilletBasicInfoController extends JeecgController<BilletBasicInfo,
 	 public Result<?> queryBilletLengthList(@RequestParam(name="ccmNo") Integer ccmNo, @RequestParam(name="heatNo") String heatNo) {
 		 List<Integer> billetLengthList = billetBasicInfoService.queryBilletLengthList(ccmNo, heatNo);
 		 if (billetLengthList.size() == 0){
-			 return Result.error("钢坯定尺信息不存在!");
+			 return Result.error("当前浇铸炉号不存在!");
 		 }
 		 return Result.OK(billetLengthList);
 	 }