mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-16 21:30:28 +08:00
update 优化汇付开户流程
This commit is contained in:
@@ -15,11 +15,14 @@
|
||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="update_by" jdbcType="VARCHAR" property="updateBy" />
|
||||
<result column="del_flag" jdbcType="VARCHAR" property="delFlag" />
|
||||
<result column="audit_state" jdbcType="VARCHAR" property="auditState" />
|
||||
<result column="audit_desc" jdbcType="VARCHAR" property="auditDesc" />
|
||||
<result column="last_order_no" jdbcType="VARCHAR" property="lastOrderNo" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, `status`, merchant_id, adapay_member_id, settle_account_id, remark, create_time,
|
||||
create_by, update_time, update_by, del_flag
|
||||
create_by, update_time, update_by, del_flag, audit_state, audit_desc, last_order_no
|
||||
</sql>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
<!--@mbg.generated-->
|
||||
@@ -78,6 +81,15 @@
|
||||
<if test="delFlag != null">
|
||||
del_flag,
|
||||
</if>
|
||||
<if test="auditState != null">
|
||||
audit_state,
|
||||
</if>
|
||||
<if test="auditDesc != null">
|
||||
audit_desc,
|
||||
</if>
|
||||
<if test="lastOrderNo != null">
|
||||
last_order_no,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="status != null">
|
||||
@@ -110,6 +122,15 @@
|
||||
<if test="delFlag != null">
|
||||
#{delFlag,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="auditState != null">
|
||||
#{auditState,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="auditDesc != null">
|
||||
#{auditDesc,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="lastOrderNo != null">
|
||||
#{lastOrderNo,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<update id="updateByPrimaryKeySelective" parameterType="com.jsowell.pile.domain.AdapayMemberAccount">
|
||||
@@ -146,6 +167,15 @@
|
||||
<if test="delFlag != null">
|
||||
del_flag = #{delFlag,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="auditState != null">
|
||||
audit_state = #{auditState,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="auditDesc != null">
|
||||
audit_desc = #{auditDesc,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="lastOrderNo != null">
|
||||
last_order_no = #{lastOrderNo,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
@@ -464,11 +494,15 @@
|
||||
<if test="merchantId != null">merchant_id = #{merchantId},</if>
|
||||
<if test="adapayMemberId != null">adapay_member_id = #{adapayMemberId},</if>
|
||||
<if test="settleAccountId != null">settle_account_id = #{settleAccountId},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
||||
<if test="auditState != null">audit_state = #{auditState},</if>
|
||||
<if test="auditDesc != null">audit_desc = #{auditDesc},</if>
|
||||
<if test="lastOrderNo != null">last_order_no = #{lastOrderNo},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
@@ -480,11 +514,15 @@
|
||||
<if test="merchantId != null">merchant_id = #{merchantId},</if>
|
||||
<if test="adapayMemberId != null">adapay_member_id = #{adapayMemberId},</if>
|
||||
<if test="settleAccountId != null">settle_account_id = #{settleAccountId},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
||||
<if test="auditState != null">audit_state = #{auditState},</if>
|
||||
<if test="auditDesc != null">audit_desc = #{auditDesc},</if>
|
||||
<if test="lastOrderNo != null">last_order_no = #{lastOrderNo},</if>
|
||||
</trim>
|
||||
where adapay_member_id = #{adapayMemberId,jdbcType=VARCHAR}
|
||||
</update>
|
||||
|
||||
Reference in New Issue
Block a user