|
|
@@ -16,7 +16,7 @@
|
|
|
<result property="updateTime" column="update_time" />
|
|
|
<result property="delFlag" column="del_flag" />
|
|
|
<result property="sortNo" column="sort_no"/>
|
|
|
- <result property="ticketStatus" column="ticket_status"/>
|
|
|
+ <result property="ticketUrl" column="ticket_url"/>
|
|
|
</resultMap>
|
|
|
<insert id="insert" parameterType="com.jpsoft.enterprise.modules.base.entity.BillDetailInfo">
|
|
|
<!--
|
|
|
@@ -26,7 +26,7 @@
|
|
|
-->
|
|
|
<![CDATA[
|
|
|
insert into base_bill_detail_info
|
|
|
- (id_,bill_id,order_id,company_id,bill_detail,rush_status,create_by,create_time,update_by,update_time,del_flag,sort_no,ticket_status)
|
|
|
+ (id_,bill_id,order_id,company_id,bill_detail,rush_status,create_by,create_time,update_by,update_time,del_flag,sort_no,ticket_url)
|
|
|
values
|
|
|
(
|
|
|
#{id,jdbcType=VARCHAR}
|
|
|
@@ -41,7 +41,7 @@
|
|
|
,#{updateTime,jdbcType= TIMESTAMP }
|
|
|
,#{delFlag,jdbcType= NUMERIC }
|
|
|
,#{sortNo,jdbcType=INTEGER}
|
|
|
-,#{ticketStatus,jdbcType=VARCHAR}
|
|
|
+,#{ticketUrl,jdbcType=VARCHAR}
|
|
|
)
|
|
|
]]>
|
|
|
</insert>
|
|
|
@@ -84,8 +84,8 @@
|
|
|
<if test="sortNo != null">
|
|
|
sort_no = #{sortNo,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
- <if test="ticketStatus != null">
|
|
|
- ticket_status = #{ticketStatus,jdbcType=VARCHAR}
|
|
|
+ <if test="ticketUrl != null">
|
|
|
+ ticket_url = #{ticketUrl,jdbcType=VARCHAR}
|
|
|
</if>
|
|
|
</set>
|
|
|
where id_=#{id}
|