|
@@ -23,6 +23,7 @@
|
|
|
<result column="remark3" property="remark3" jdbcType="VARCHAR"/>
|
|
<result column="remark3" property="remark3" jdbcType="VARCHAR"/>
|
|
|
<result column="vuforia_image" property="vuforiaImage" jdbcType="VARCHAR"/>
|
|
<result column="vuforia_image" property="vuforiaImage" jdbcType="VARCHAR"/>
|
|
|
<result column="target_id" property="targetId" jdbcType="VARCHAR"/>
|
|
<result column="target_id" property="targetId" jdbcType="VARCHAR"/>
|
|
|
|
|
+ <result column="map_index" property="mapIndex" jdbcType="VARCHAR"/>
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
<sql id="Base_Column_List">
|
|
<sql id="Base_Column_List">
|
|
|
<trim suffixOverrides=",">
|
|
<trim suffixOverrides=",">
|
|
@@ -68,6 +69,8 @@
|
|
|
|
|
|
|
|
target_id,
|
|
target_id,
|
|
|
|
|
|
|
|
|
|
+ map_index,
|
|
|
|
|
+
|
|
|
</trim>
|
|
</trim>
|
|
|
</sql>
|
|
</sql>
|
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
|
|
@@ -147,6 +150,9 @@
|
|
|
<if test="targetId!= null">
|
|
<if test="targetId!= null">
|
|
|
target_id,
|
|
target_id,
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="mapIndex!= null">
|
|
|
|
|
+ map_index,
|
|
|
|
|
+ </if>
|
|
|
</trim>
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="id != null">
|
|
<if test="id != null">
|
|
@@ -212,6 +218,9 @@
|
|
|
<if test="targetId != null">
|
|
<if test="targetId != null">
|
|
|
#{targetId,jdbcType=VARCHAR},
|
|
#{targetId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="mapIndex != null">
|
|
|
|
|
+ #{mapIndex,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
</trim>
|
|
</trim>
|
|
|
</insert>
|
|
</insert>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.VuforiaImageInfo">
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.izouma.awesomeadmin.model.VuforiaImageInfo">
|
|
@@ -280,6 +289,9 @@
|
|
|
<if test="targetId != null">
|
|
<if test="targetId != null">
|
|
|
target_id= #{targetId,jdbcType=VARCHAR},
|
|
target_id= #{targetId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="mapIndex != null">
|
|
|
|
|
+ map_index= #{mapIndex,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
</set>
|
|
</set>
|
|
|
where
|
|
where
|
|
|
<if test="id != null and !"".equals(id)">
|
|
<if test="id != null and !"".equals(id)">
|