Blame view

cloud/dahua/src/main/resources/xiaoanmapper/SearchMapper.xml 845 Bytes
9df247c3   徐泉   大华考勤需求提交
1
2
<?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" >
c6a8099f   徐泉   遗漏提交
3
<mapper namespace="com.example.dahua.xiananDao.SearchMapper" >
9df247c3   徐泉   大华考勤需求提交
4
5
6
7
8
9


    <resultMap id="resultMap" type="com.example.dahua.bean.CheckIn">
        <result column="arr" property="out" jdbcType="VARCHAR" />
        <result column="iscuccess" property="isSuccess" jdbcType="INTEGER" />
    </resultMap>
c6a8099f   徐泉   遗漏提交
10
11

    <insert id="checkIn" parameterType="com.example.dahua.bean.CheckIn" statementType="CALLABLE">
9df247c3   徐泉   大华考勤需求提交
12
13
14
15
16
17
        {call AttendanceService(
           #{deviceId,mode=IN} , #{cardNo,mode=IN} , #{funNo,mode=IN}, #{flag,mode=IN} , #{checkTime,mode=IN},
           #{out,mode=OUT,jdbcType=VARCHAR,resultMap=resultMap},#{isSuccess,mode=OUT,jdbcType=INTEGER,resultMap=resultMap}
        )}
    </insert>

ad296f75   徐泉   智能校卫:海康、大华人脸机代码提交
18
</mapper>
09102d07   徐泉   修改提交

9df247c3   徐泉   大华考勤需求提交