...
|
...
|
@@ -7,7 +7,7 @@ |
|
|
<result column="status" property="status" jdbcType="INTEGER" />
|
|
|
<result column="type" property="type" jdbcType="INTEGER" />
|
|
|
<result column="field" property="field" jdbcType="VARCHAR" />
|
|
|
<result column="field_values" property="values" jdbcType="VARCHAR" />
|
|
|
<result column="field_values" property="fieldValues" jdbcType="VARCHAR" />
|
|
|
<result column="boost" property="boost" jdbcType="INTEGER" />
|
|
|
</resultMap>
|
|
|
<sql id="DynamicRule_Column_List">
|
...
|
...
|
@@ -21,7 +21,7 @@ |
|
|
#{status, jdbcType=INTEGER},
|
|
|
#{type, jdbcType=INTEGER},
|
|
|
#{field, jdbcType=VARCHAR},
|
|
|
#{values, jdbcType=VARCHAR},
|
|
|
#{fieldValues, jdbcType=VARCHAR},
|
|
|
#{boost, jdbcType=INTEGER})
|
|
|
</insert>
|
|
|
|
...
|
...
|
@@ -43,7 +43,7 @@ |
|
|
status = #{status, jdbcType=INTEGER},
|
|
|
type = #{type, jdbcType=INTEGER},
|
|
|
field = #{field,jdbcType=VARCHAR},
|
|
|
field_values = #{values,jdbcType=VARCHAR},
|
|
|
field_values = #{fieldValues,jdbcType=VARCHAR},
|
|
|
boost = #{boost, jdbcType=INTEGER}
|
|
|
where id = #{id, jdbcType=INTEGER}
|
|
|
</update>
|
...
|
...
|
|