Authored by zhaojun2

fix recall product

... ... @@ -5,7 +5,7 @@
<id column="id" property="id" jdbcType="INTEGER"/>
<result column="config_page" property="configPage" jdbcType="INTEGER"/>
<result column="config_type" property="configType" jdbcType="VARCHAR"/>
<result column="config_type_id" property="configTypeId" jdbcType="INTEGER"/>
<result column="config_type_id" property="configTypeId" jdbcType="VARCHAR"/>
<result column="config_status" property="configStatus" jdbcType="INTEGER"/>
<result column="new_shelve" property="newShelve" jdbcType="INTEGER"/>
<result column="promotion" property="promotion" jdbcType="INTEGER"/>
... ... @@ -35,7 +35,7 @@
config_type = #{configType,jdbcType=VARCHAR},
</if>
<if test="configTypeId != null">
config_type_id = #{configTypeId,jdbcType=INTEGER},
config_type_id = #{configTypeId,jdbcType=VARCHAR},
</if>
<if test="configStatus != null">
config_status = #{configStatus,jdbcType=INTEGER},
... ...
... ... @@ -17,7 +17,7 @@
"type": "keyword"
},
"configTypeId": {
"type": "integer"
"type": "keyword"
},
"configStatus": {
"type": "integer"
... ...