报名逻辑修改

This commit is contained in:
ly19960718 2021-05-12 10:45:42 +08:00
parent 328d4fef5a
commit 48be439332
2 changed files with 2 additions and 6 deletions

View File

@ -62,7 +62,6 @@ public class ApplyServiceImpl extends DefaultBaseService implements IApplyServic
public SuccessResultList<List<ApplyDTO>> listPageMyApply(String token,ListPage page){ public SuccessResultList<List<ApplyDTO>> listPageMyApply(String token,ListPage page){
if (StringUtils.isBlank(token)) { if (StringUtils.isBlank(token)) {
page.getParams().put("creator",securityComponent.getCurrentUser().getUserId()); page.getParams().put("creator",securityComponent.getCurrentUser().getUserId());
@ -88,11 +87,6 @@ public class ApplyServiceImpl extends DefaultBaseService implements IApplyServic
public void audit(String token,ApplyAuditVO applyAuditVO){ public void audit(String token,ApplyAuditVO applyAuditVO){
ApplyDTO applyDTO = this.get(applyAuditVO.getApplyId()); ApplyDTO applyDTO = this.get(applyAuditVO.getApplyId());
if(applyDTO == null){ if(applyDTO == null){

View File

@ -444,6 +444,8 @@
t1.apply_class_name LIKE CONCAT('%', #{keywords}, '%') t1.apply_class_name LIKE CONCAT('%', #{keywords}, '%')
OR OR
t1.apply_name LIKE CONCAT('%', #{keywords}, '%') t1.apply_name LIKE CONCAT('%', #{keywords}, '%')
OR
t1.apply_card_number LIKE CONCAT('%', #{keywords}, '%')
) )
</if> </if>
<if test="startTime != null and startTime != ''"> <if test="startTime != null and startTime != ''">