|
@@ -7,6 +7,7 @@
|
|
<id column="id_" jdbcType="INTEGER" property="id"/>
|
|
<id column="id_" jdbcType="INTEGER" property="id"/>
|
|
<result column="sporadic_id_" jdbcType="INTEGER" property="sporadicId"/>
|
|
<result column="sporadic_id_" jdbcType="INTEGER" property="sporadicId"/>
|
|
<result column="order_no_" jdbcType="VARCHAR" property="orderNo"/>
|
|
<result column="order_no_" jdbcType="VARCHAR" property="orderNo"/>
|
|
|
|
+ <result column="trans_no_" jdbcType="VARCHAR" property="transNo"/>
|
|
<result column="name_" jdbcType="VARCHAR" property="name"/>
|
|
<result column="name_" jdbcType="VARCHAR" property="name"/>
|
|
<result column="gender_" jdbcType="VARCHAR" property="gender"/>
|
|
<result column="gender_" jdbcType="VARCHAR" property="gender"/>
|
|
<result column="idcard_" jdbcType="VARCHAR" property="idcard"/>
|
|
<result column="idcard_" jdbcType="VARCHAR" property="idcard"/>
|
|
@@ -55,6 +56,9 @@
|
|
<if test="orderNo != null">
|
|
<if test="orderNo != null">
|
|
AND order_no_ = #{orderNo}
|
|
AND order_no_ = #{orderNo}
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="transNo != null">
|
|
|
|
+ AND trans_no_ = #{transNo}
|
|
|
|
+ </if>
|
|
<if test="name != null">
|
|
<if test="name != null">
|
|
AND name_ = #{name}
|
|
AND name_ = #{name}
|
|
</if>
|
|
</if>
|
|
@@ -113,12 +117,12 @@
|
|
<insert id="insert" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.DegreeRegistration"
|
|
<insert id="insert" keyColumn="id_" keyProperty="id" parameterType="com.ym.mec.biz.dal.entity.DegreeRegistration"
|
|
useGeneratedKeys="true">
|
|
useGeneratedKeys="true">
|
|
<!--@mbg.generated-->
|
|
<!--@mbg.generated-->
|
|
- insert into degree_registration (sporadic_id_, name_, gender_,
|
|
|
|
|
|
+ insert into degree_registration (sporadic_id_,order_no_, name_, gender_,
|
|
idcard_, city_, school_,
|
|
idcard_, city_, school_,
|
|
subject_,level_, theory_level_,theory_money_, theory_cert_,mobile_,
|
|
subject_,level_, theory_level_,theory_money_, theory_cert_,mobile_,
|
|
money_, memo_, create_time_,
|
|
money_, memo_, create_time_,
|
|
update_time_, status_)
|
|
update_time_, status_)
|
|
- values (#{sporadicId,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{gender,jdbcType=VARCHAR},
|
|
|
|
|
|
+ values (#{sporadicId,jdbcType=INTEGER}, #{orderNo,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{gender,jdbcType=VARCHAR},
|
|
#{idcard,jdbcType=VARCHAR}, #{city,jdbcType=VARCHAR}, #{school,jdbcType=VARCHAR},
|
|
#{idcard,jdbcType=VARCHAR}, #{city,jdbcType=VARCHAR}, #{school,jdbcType=VARCHAR},
|
|
#{subject,jdbcType=VARCHAR},#{level,jdbcType=VARCHAR},
|
|
#{subject,jdbcType=VARCHAR},#{level,jdbcType=VARCHAR},
|
|
#{theoryLevel,jdbcType=VARCHAR},#{theoryMoney,jdbcType=DECIMAL},
|
|
#{theoryLevel,jdbcType=VARCHAR},#{theoryMoney,jdbcType=DECIMAL},
|