diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/TemplateServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/TemplateServiceImpl.java index 5eb899c..6e489e0 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/TemplateServiceImpl.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/TemplateServiceImpl.java @@ -44,9 +44,6 @@ public class TemplateServiceImpl extends ServiceImpl i if(template.getDeptId()!=null && template.getDeptId().longValue()>0){ queryWrapper.eq("t.dept_id",template.getDeptId()); } - if(template.getNeedPre()!=null && template.getNeedPre().intValue()>0){ - queryWrapper.eq("t.need_pre",template.getNeedPre()); - } if(template.getStatus()!=null && template.getStatus().intValue()>0){ queryWrapper.eq("t.status",template.getStatus()); } diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/TemplateMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/TemplateMapper.xml index a0fbe9a..2c30746 100644 --- a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/TemplateMapper.xml +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/TemplateMapper.xml @@ -4,7 +4,7 @@ "http://mybatis.org/dtd/mybatis-3-mapper.dtd">