增加功能

This commit is contained in:
jiangs 2025-08-08 10:13:54 +08:00
parent dc83412a06
commit 22e89aaf14
2 changed files with 10 additions and 7 deletions

View File

@ -275,7 +275,7 @@ public class CommonUtil {
*/
public boolean getDupSqd(String bz2,String sqxmdh){
//判断此申请单是否已经获取过
QueryWrapper queryWrapper = new QueryWrapper();
QueryWrapper<LabReqdetail> queryWrapper = new QueryWrapper();
queryWrapper.eq("bz2",bz2);
queryWrapper.eq("sqxmdh",sqxmdh);
Long count = labReqdetailMapper.selectCount(queryWrapper);
@ -289,7 +289,7 @@ public class CommonUtil {
public boolean getDupSqd(String bz2,String bz1,String sqxmdh){
//判断此申请单是否已经获取过
QueryWrapper queryWrapper = new QueryWrapper();
QueryWrapper<LabReqdetail> queryWrapper = new QueryWrapper();
if(!bz2.equals("")) queryWrapper.eq("bz2",bz2);
if(!bz1.equals("")) queryWrapper.eq("bz1",bz1);
queryWrapper.eq("sqxmdh",sqxmdh);

View File

@ -71,7 +71,9 @@
<manifestEntries>
<!--MANIFEST.MF 中 Class-Path 加入资源文件目录 -->
<Class-Path>
./config/ liscommon-1.0.jar lisinterface_jldermyy-1.0.jar
./config/
liscommon-1.0.jar
lisinterface_jldermyy-1.0.jar
</Class-Path>
</manifestEntries>
</archive>
@ -93,9 +95,9 @@
<configuration>
<outputDirectory>${project.build.directory}/lib/</outputDirectory>
<!-- 排除指定的自定义 jar 包(根据 artifactId 排除) -->
<excludeArtifactIds>liscommon,lisinterface_jldermyy</excludeArtifactIds>
<!-- 可选:如果需要更精确,可结合 groupId 排除(这里两个依赖的 groupId 都是 org.example) -->
<!-- <excludeGroupIds>org.example</excludeGroupIds>-->
<!-- <excludeArtifactIds>liscommon,lisinterface_jldermyy</excludeArtifactIds>-->
<!-- 可选:如果需要更精确,可结合 groupId 排除 -->
<excludeGroupIds>org.example</excludeGroupIds>
</configuration>
</execution>
<!--打包自定义jar包-->
@ -108,7 +110,8 @@
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<!-- 只包含这两个自定义 jar 包(根据 artifactId 匹配) -->
<includeArtifactIds>liscommon,lisinterface_jldermyy</includeArtifactIds>
<!-- <includeArtifactIds>liscommon,lisinterface_jldermyy</includeArtifactIds>-->
<includeGroupIds>org.example</includeGroupIds>
</configuration>
</execution>
</executions>