| | |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="cn.gistack.sm.patrol.mapper.PatrolTypeMapper"> |
| | | |
| | | <select id="selectPatrolType" resultType="cn.gistack.sm.patrol.entity.PatrolType"></select> |
| | | <select id="selectPatrolType" resultType="cn.gistack.sm.patrol.entity.PatrolType"> |
| | | SELECT id,name,create_time |
| | | FROM SM_PATROL_TYPE |
| | | WHERE is_deleted = 0 |
| | | <if test="patrolType.name !=null and patrolType.name !='' "> |
| | | AND name LIKE CONCAT('%',#{patrolType.name},'%') |
| | | </if> |
| | | </select> |
| | | </mapper> |