19 lines
629 B
XML
19 lines
629 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE mapper
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.bonus.canteen.core.android.mapper.FaceMapper">
|
|
<select id="getFaceFeatureList" resultType="com.bonus.canteen.core.user.domain.UserFace">
|
|
select
|
|
user_id,
|
|
photo_url,
|
|
features,
|
|
face_state
|
|
from user_face
|
|
<where>
|
|
<if test="time != null and time != ''">
|
|
and update_time >= #{time} - INTERVAL 5 SECOND;
|
|
</if>
|
|
</where>
|
|
</select>
|
|
</mapper> |