|
@@ -240,12 +240,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
s.`responsible_person` as responsiblePerson,
|
|
|
s.`area_name` as areaName,
|
|
|
s.`tel`,
|
|
|
+ s.`removed`,
|
|
|
s.`registration_date` as registrationDate,
|
|
|
s.`credibility_score` as credibilityScore,
|
|
|
s.`create_time` as createTime
|
|
|
FROM
|
|
|
school_info s
|
|
|
<where>
|
|
|
+ s.`removed` = '0'
|
|
|
<if test="id != null and id != ''"> and s.id = #{id}</if>
|
|
|
<if test="inscode != null and inscode != ''"> and s.inscode = #{inscode}</if>
|
|
|
<if test="name != null and name != ''"> and s.`name` like concat('%', #{name}, '%')</if>
|