e92e5a92
陶汉栋
增加网关负载
|
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<resultMap id="BaseResultMap" type="com.sincere.common.dto.xiaoan.FaceSendfail">
<result column="deviceID" jdbcType="VARCHAR" property="deviceid" />
<result column="customerid" jdbcType="VARCHAR" property="customerid" />
<result column="Num" jdbcType="VARCHAR" property="num" />
<result column="Name" jdbcType="VARCHAR" property="name" />
<result column="time" jdbcType="VARCHAR" property="time" />
<result column="schoolName" jdbcType="VARCHAR" property="schoolname" />
<result column="imgPath" jdbcType="VARCHAR" property="imgpath" />
<result column="schoolId" jdbcType="INTEGER" property="schoolid" />
<result column="failContent" jdbcType="VARCHAR" property="failcontent" />
<result column="failType" jdbcType="INTEGER" property="failtype" />
<result column="userType" jdbcType="INTEGER" property="usertype" />
<result column="deviceType" jdbcType="INTEGER" property="devicetype" />
</resultMap>
<insert id="insert" parameterType="com.sincere.common.dto.xiaoan.FaceSendfail">
insert into Face_SendFail (deviceID, customerid, Num,
Name, time, schoolName,
imgPath, schoolId, failContent,
failType, userType, deviceType
)
values (#{deviceid,jdbcType=VARCHAR}, #{customerid,jdbcType=VARCHAR}, #{num,jdbcType=VARCHAR},
#{name,jdbcType=VARCHAR}, GETDATE(), #{schoolname,jdbcType=VARCHAR},
#{imgpath,jdbcType=VARCHAR}, #{schoolid,jdbcType=INTEGER}, #{failcontent,jdbcType=VARCHAR},
#{failtype,jdbcType=INTEGER}, #{usertype,jdbcType=INTEGER}, #{devicetype,jdbcType=INTEGER}
)
</insert>
|