增加功能
This commit is contained in:
parent
dc83412a06
commit
22e89aaf14
@ -275,7 +275,7 @@ public class CommonUtil {
|
|||||||
*/
|
*/
|
||||||
public boolean getDupSqd(String bz2,String sqxmdh){
|
public boolean getDupSqd(String bz2,String sqxmdh){
|
||||||
//判断此申请单是否已经获取过
|
//判断此申请单是否已经获取过
|
||||||
QueryWrapper queryWrapper = new QueryWrapper();
|
QueryWrapper<LabReqdetail> queryWrapper = new QueryWrapper();
|
||||||
queryWrapper.eq("bz2",bz2);
|
queryWrapper.eq("bz2",bz2);
|
||||||
queryWrapper.eq("sqxmdh",sqxmdh);
|
queryWrapper.eq("sqxmdh",sqxmdh);
|
||||||
Long count = labReqdetailMapper.selectCount(queryWrapper);
|
Long count = labReqdetailMapper.selectCount(queryWrapper);
|
||||||
@ -289,7 +289,7 @@ public class CommonUtil {
|
|||||||
|
|
||||||
public boolean getDupSqd(String bz2,String bz1,String sqxmdh){
|
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(!bz2.equals("")) queryWrapper.eq("bz2",bz2);
|
||||||
if(!bz1.equals("")) queryWrapper.eq("bz1",bz1);
|
if(!bz1.equals("")) queryWrapper.eq("bz1",bz1);
|
||||||
queryWrapper.eq("sqxmdh",sqxmdh);
|
queryWrapper.eq("sqxmdh",sqxmdh);
|
||||||
|
|||||||
@ -71,7 +71,9 @@
|
|||||||
<manifestEntries>
|
<manifestEntries>
|
||||||
<!--MANIFEST.MF 中 Class-Path 加入资源文件目录 -->
|
<!--MANIFEST.MF 中 Class-Path 加入资源文件目录 -->
|
||||||
<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>
|
</Class-Path>
|
||||||
</manifestEntries>
|
</manifestEntries>
|
||||||
</archive>
|
</archive>
|
||||||
@ -93,9 +95,9 @@
|
|||||||
<configuration>
|
<configuration>
|
||||||
<outputDirectory>${project.build.directory}/lib/</outputDirectory>
|
<outputDirectory>${project.build.directory}/lib/</outputDirectory>
|
||||||
<!-- 排除指定的自定义 jar 包(根据 artifactId 排除) -->
|
<!-- 排除指定的自定义 jar 包(根据 artifactId 排除) -->
|
||||||
<excludeArtifactIds>liscommon,lisinterface_jldermyy</excludeArtifactIds>
|
<!-- <excludeArtifactIds>liscommon,lisinterface_jldermyy</excludeArtifactIds>-->
|
||||||
<!-- 可选:如果需要更精确,可结合 groupId 排除(这里两个依赖的 groupId 都是 org.example) -->
|
<!-- 可选:如果需要更精确,可结合 groupId 排除 -->
|
||||||
<!-- <excludeGroupIds>org.example</excludeGroupIds>-->
|
<excludeGroupIds>org.example</excludeGroupIds>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
<!--打包自定义jar包-->
|
<!--打包自定义jar包-->
|
||||||
@ -108,7 +110,8 @@
|
|||||||
<configuration>
|
<configuration>
|
||||||
<outputDirectory>${project.build.directory}</outputDirectory>
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
||||||
<!-- 只包含这两个自定义 jar 包(根据 artifactId 匹配) -->
|
<!-- 只包含这两个自定义 jar 包(根据 artifactId 匹配) -->
|
||||||
<includeArtifactIds>liscommon,lisinterface_jldermyy</includeArtifactIds>
|
<!-- <includeArtifactIds>liscommon,lisinterface_jldermyy</includeArtifactIds>-->
|
||||||
|
<includeGroupIds>org.example</includeGroupIds>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user