新增模糊查询
This commit is contained in:
parent
7480fe2fd4
commit
94ea652330
|
|
@ -100,7 +100,7 @@ public class TbKeyPeopleController extends BaseController {
|
|||
return success("关键人员修改成功");
|
||||
}catch (Exception e){
|
||||
log.info("关键人员修改失败{}",e.getMessage());
|
||||
return error("关键人员修改失败");
|
||||
return error(e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -7,16 +7,16 @@
|
|||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="title != null and title != ''">title,</if>
|
||||
<if test="workContent != null and workContent != ''">work_content,</if>
|
||||
<if test="keyUser != null">key_user,</if>
|
||||
<if test="perfId != null ">perf_id,</if>
|
||||
<if test="source != null ">source,</if>
|
||||
<if test="keyUser != null and keyUser != ''">key_user,</if>
|
||||
<if test="perfId != null and perfId != '' ">perf_id,</if>
|
||||
<if test="source != null and source != ''">source,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="title != null and title != ''">#{title},</if>
|
||||
<if test="workContent != null and workContent != ''">#{workContent},</if>
|
||||
<if test="keyUser != null ">#{keyUser},</if>
|
||||
<if test="perfId != null ">#{perfId},</if>
|
||||
<if test="source != null ">#{source},</if>
|
||||
<if test="keyUser != null and keyUser != ''">#{keyUser},</if>
|
||||
<if test="perfId != null and perfId != ''">#{perfId},</if>
|
||||
<if test="source != null and source != ''">#{source},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<delete id="delTbCompanyPerRelByPerfId">
|
||||
|
|
|
|||
Loading…
Reference in New Issue