1.系统业务管理列表增加serviceId搜索条件

2.修复修改业务时serviceId会自动获取新值的问题(serviceId是不允许修改的)
This commit is contained in:
chenjinsong
2018-03-05 10:23:02 +08:00
parent 8dea18adc1
commit 58cff64fd9
3 changed files with 12 additions and 2 deletions

View File

@@ -41,6 +41,9 @@
<if test="serviceName != null and serviceName != ''">
and ssi.service_name like CONCAT('%', #{serviceName}, '%')
</if>
<if test="serviceId != null and serviceId != ''">
and ssi.service_id like CONCAT('%', #{serviceId}, '%')
</if>
<if test="action != null">
and ssi.action=#{action}
</if>