Showing
2 changed files
with
6 additions
and
6 deletions
@@ -19,7 +19,7 @@ | @@ -19,7 +19,7 @@ | ||
19 | <result column="operator_name" property="operatorName" jdbcType="VARCHAR" /> | 19 | <result column="operator_name" property="operatorName" jdbcType="VARCHAR" /> |
20 | <result column="sponsor_name" property="sponsorName" jdbcType="VARCHAR" /> | 20 | <result column="sponsor_name" property="sponsorName" jdbcType="VARCHAR" /> |
21 | <result column="remark" property="remark" jdbcType="VARCHAR" /> | 21 | <result column="remark" property="remark" jdbcType="VARCHAR" /> |
22 | - <result column="del_flag" property="delFlag" jdbcType="BIT" /> | 22 | + <result column="del_flag" property="delFlag" jdbcType="TINYINT" /> |
23 | 23 | ||
24 | </resultMap> | 24 | </resultMap> |
25 | <sql id="Base_Column_List" > | 25 | <sql id="Base_Column_List" > |
@@ -49,7 +49,7 @@ | @@ -49,7 +49,7 @@ | ||
49 | #{refundAmount,jdbcType=DECIMAL}, #{refundChannel,jdbcType=TINYINT}, #{payeeName,jdbcType=VARCHAR}, | 49 | #{refundAmount,jdbcType=DECIMAL}, #{refundChannel,jdbcType=TINYINT}, #{payeeName,jdbcType=VARCHAR}, |
50 | #{payeeAccount,jdbcType=VARCHAR}, #{refundStatus,jdbcType=TINYINT}, #{goodsName,jdbcType=VARCHAR}, | 50 | #{payeeAccount,jdbcType=VARCHAR}, #{refundStatus,jdbcType=TINYINT}, #{goodsName,jdbcType=VARCHAR}, |
51 | #{goodsSize,jdbcType=VARCHAR}, #{refundAddress,jdbcType=VARCHAR}, #{operatorName,jdbcType=VARCHAR}, | 51 | #{goodsSize,jdbcType=VARCHAR}, #{refundAddress,jdbcType=VARCHAR}, #{operatorName,jdbcType=VARCHAR}, |
52 | - #{remark,jdbcType=VARCHAR}, #{delFlag,jdbcType=BIT}) | 52 | + #{remark,jdbcType=VARCHAR}, #{delFlag,jdbcType=TINYINT}) |
53 | </insert> | 53 | </insert> |
54 | <insert id="insertSelective" parameterType="com.yoho.order.model.RefundRecord" > | 54 | <insert id="insertSelective" parameterType="com.yoho.order.model.RefundRecord" > |
55 | insert into refund_record | 55 | insert into refund_record |
@@ -156,7 +156,7 @@ | @@ -156,7 +156,7 @@ | ||
156 | #{remark,jdbcType=VARCHAR}, | 156 | #{remark,jdbcType=VARCHAR}, |
157 | </if> | 157 | </if> |
158 | <if test="delFlag != null" > | 158 | <if test="delFlag != null" > |
159 | - #{delFlag,jdbcType=BIT}, | 159 | + #{delFlag,jdbcType=TINYINT}, |
160 | </if> | 160 | </if> |
161 | </trim> | 161 | </trim> |
162 | </insert> | 162 | </insert> |
@@ -209,7 +209,7 @@ | @@ -209,7 +209,7 @@ | ||
209 | remark = #{remark,jdbcType=VARCHAR}, | 209 | remark = #{remark,jdbcType=VARCHAR}, |
210 | </if> | 210 | </if> |
211 | <if test="delFlag != null" > | 211 | <if test="delFlag != null" > |
212 | - del_flag = #{delFlag,jdbcType=BIT}, | 212 | + del_flag = #{delFlag,jdbcType=TINYINT}, |
213 | </if> | 213 | </if> |
214 | </set> | 214 | </set> |
215 | where id = #{id,jdbcType=INTEGER} | 215 | where id = #{id,jdbcType=INTEGER} |
@@ -231,7 +231,7 @@ | @@ -231,7 +231,7 @@ | ||
231 | refund_address = #{refundAddress,jdbcType=VARCHAR}, | 231 | refund_address = #{refundAddress,jdbcType=VARCHAR}, |
232 | operator_name = #{operatorName,jdbcType=VARCHAR}, | 232 | operator_name = #{operatorName,jdbcType=VARCHAR}, |
233 | remark = #{remark,jdbcType=VARCHAR}, | 233 | remark = #{remark,jdbcType=VARCHAR}, |
234 | - del_flag = #{delFlag,jdbcType=BIT} | 234 | + del_flag = #{delFlag,jdbcType=TINYINT} |
235 | where id = #{id,jdbcType=INTEGER} | 235 | where id = #{id,jdbcType=INTEGER} |
236 | </update> | 236 | </update> |
237 | 237 |
-
Please register or login to post a comment