|
@@ -5,6 +5,7 @@
|
|
<!--@Table sys_payment_config-->
|
|
<!--@Table sys_payment_config-->
|
|
<id column="id_" jdbcType="INTEGER" property="id"/>
|
|
<id column="id_" jdbcType="INTEGER" property="id"/>
|
|
<result column="organ_id_" property="organId"/>
|
|
<result column="organ_id_" property="organId"/>
|
|
|
|
+ <result column="account_tyoe_" property="accountType"/>
|
|
<result column="pay_type_" property="payType"/>
|
|
<result column="pay_type_" property="payType"/>
|
|
<result column="yq_mer_no_" property="yqMerNo"/>
|
|
<result column="yq_mer_no_" property="yqMerNo"/>
|
|
<result column="hf_mer_no_" property="hfMerNo"/>
|
|
<result column="hf_mer_no_" property="hfMerNo"/>
|
|
@@ -22,7 +23,7 @@
|
|
</resultMap>
|
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
|
<sql id="Base_Column_List">
|
|
<!--@mbg.generated-->
|
|
<!--@mbg.generated-->
|
|
- id_, organ_id_,pay_type_,yq_mer_no_,hf_mer_no_,type_,route_scale_,create_time_, update_time_
|
|
|
|
|
|
+ id_, organ_id_,account_type_,pay_type_,yq_mer_no_,hf_mer_no_,type_,route_scale_,create_time_, update_time_
|
|
</sql>
|
|
</sql>
|
|
<select id="get" parameterType="java.lang.Integer" resultMap="SysPaymentConfig">
|
|
<select id="get" parameterType="java.lang.Integer" resultMap="SysPaymentConfig">
|
|
<!--@mbg.generated-->
|
|
<!--@mbg.generated-->
|
|
@@ -44,6 +45,9 @@
|
|
<if test="organId != null">
|
|
<if test="organId != null">
|
|
organ_id_,
|
|
organ_id_,
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="accountType != null">
|
|
|
|
+ account_type_,
|
|
|
|
+ </if>
|
|
<if test="payType != null">
|
|
<if test="payType != null">
|
|
pay_type_,
|
|
pay_type_,
|
|
</if>
|
|
</if>
|
|
@@ -70,6 +74,9 @@
|
|
<if test="organId != null">
|
|
<if test="organId != null">
|
|
#{organId},
|
|
#{organId},
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="accountType != null">
|
|
|
|
+ #{accountType},
|
|
|
|
+ </if>
|
|
<if test="payType != null">
|
|
<if test="payType != null">
|
|
#{payType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
#{payType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
</if>
|
|
</if>
|
|
@@ -100,6 +107,9 @@
|
|
<if test="organId != null">
|
|
<if test="organId != null">
|
|
organ_id_ = #{organId},
|
|
organ_id_ = #{organId},
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="accountType != null">
|
|
|
|
+ account_type_ = #{accountType},
|
|
|
|
+ </if>
|
|
<if test="payType != null">
|
|
<if test="payType != null">
|
|
pay_type_ = #{payType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
pay_type_ = #{payType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
</if>
|
|
</if>
|