src/main/java/com/ots/project/tool/exam/ExamUtil.java | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/main/java/com/ots/project/tool/exam/ExamUtil.java
@@ -1,4 +1,5 @@ package com.ots.project.tool.exam; import com.ots.common.enums.ReportTypeEnum; import com.ots.common.utils.StringUtils; import java.util.Arrays; import java.util.Date; @@ -394,4 +395,15 @@ } return ""; } /** * 是不是LAQ * @return */ public static boolean isLAQ(String testName){ if(StringUtils.isEmpty(testName)){ return false; } return testName.contains(ReportTypeEnum.LAQ.getCode()); } }