|
@@ -88,7 +88,7 @@
|
|
|
<if test="mobile != null">
|
|
|
AND mobile_= #{mobile}
|
|
|
</if>
|
|
|
- <if test="level != null">
|
|
|
+ <if test="level != null and level != ''">
|
|
|
AND level_= #{level}
|
|
|
</if>
|
|
|
<if test="startTime != null">
|
|
@@ -100,6 +100,9 @@
|
|
|
<if test="search != null and search != ''">
|
|
|
and (user_id_ like concat('%',#{search},'%') or name_ like CONCAT('%',#{search},'%') or mobile_ like CONCAT('%',#{search},'%') )
|
|
|
</if>
|
|
|
+ <if test="degreeId != null ">
|
|
|
+ and degree_id_ = #{degreeId}
|
|
|
+ </if>
|
|
|
</where>
|
|
|
</sql>
|
|
|
|
|
@@ -140,22 +143,19 @@
|
|
|
insert into degree_registration (user_id_,degree_id_,organ_id_,order_no_, name_, gender_,
|
|
|
idcard_, city_, school_,
|
|
|
subject_id_,level_, theory_cert_,mobile_,
|
|
|
- money_, memo_, create_time_,
|
|
|
- update_time_, status_,certificate_type_,tenant_id_,type_)
|
|
|
+ money_, memo_,status_,certificate_type_,tenant_id_,type_)
|
|
|
values (#{userId},#{degreeId},#{organId,jdbcType=INTEGER}, #{orderNo,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{gender,jdbcType=VARCHAR},
|
|
|
#{idcard,jdbcType=VARCHAR}, #{city,jdbcType=VARCHAR}, #{school,jdbcType=VARCHAR},
|
|
|
#{subjectId},#{level,jdbcType=VARCHAR},
|
|
|
#{theoryCert,jdbcType=VARCHAR},#{mobile,jdbcType=VARCHAR},#{money,jdbcType=DECIMAL}, #{memo,jdbcType=VARCHAR},
|
|
|
- #{createTime}, #{updateTime}, #{status,jdbcType=TINYINT},
|
|
|
- #{certificateType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
|
+ #{status,jdbcType=TINYINT},#{certificateType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
|
#{tenantId},#{type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler})
|
|
|
</insert>
|
|
|
<insert id="batchInsert">
|
|
|
INSERT INTO degree_registration (user_id_,degree_id_,organ_id_,order_no_, name_, gender_,
|
|
|
idcard_, city_, school_,
|
|
|
subject_id_,level_, theory_cert_,mobile_,
|
|
|
- money_, memo_, create_time_,
|
|
|
- update_time_, status_,certificate_type_,tenant_id_,type_)
|
|
|
+ money_, memo_,status_,certificate_type_,tenant_id_,type_)
|
|
|
VALUE
|
|
|
<foreach collection="degreeRegistrationList" separator="," item="degreeRegistration">
|
|
|
(#{degreeRegistration.userId},#{degreeRegistration.degreeId,jdbcType=INTEGER},#{degreeRegistration.organId,jdbcType=INTEGER},
|
|
@@ -163,7 +163,7 @@
|
|
|
#{degreeRegistration.idcard,jdbcType=VARCHAR}, #{degreeRegistration.city,jdbcType=VARCHAR}, #{degreeRegistration.school,jdbcType=VARCHAR},
|
|
|
#{degreeRegistration.subjectId},#{degreeRegistration.level,jdbcType=VARCHAR},
|
|
|
#{degreeRegistration.theoryCert,jdbcType=VARCHAR},#{degreeRegistration.mobile,jdbcType=VARCHAR},#{degreeRegistration.money,jdbcType=DECIMAL}, #{degreeRegistration.memo,jdbcType=VARCHAR},
|
|
|
- #{degreeRegistration.createTime}, #{degreeRegistration.updateTime}, #{degreeRegistration.status,jdbcType=TINYINT},
|
|
|
+ #{degreeRegistration.status,jdbcType=TINYINT},
|
|
|
#{degreeRegistration.certificateType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
|
#{degreeRegistration.tenantId},#{degreeRegistration.type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler})
|
|
|
</foreach>
|
|
@@ -220,16 +220,12 @@
|
|
|
<if test="memo != null">
|
|
|
memo_ = #{memo,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="createTime != null">
|
|
|
- create_time_ = #{createTime},
|
|
|
- </if>
|
|
|
<if test="status != null">
|
|
|
status_ = #{status,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="certificateType != null">
|
|
|
certificate_type_ = #{certificateType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
|
</if>
|
|
|
- update_time_ = NOW()
|
|
|
</set>
|
|
|
where id_ = #{id,jdbcType=INTEGER} and tenant_id_ = #{tenantId}
|
|
|
</update>
|
|
@@ -286,16 +282,12 @@
|
|
|
<if test="degree.memo != null">
|
|
|
memo_ = #{degree.memo,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
- <if test="degree.createTime != null">
|
|
|
- create_time_ = #{degree.createTime},
|
|
|
- </if>
|
|
|
<if test="degree.status != null">
|
|
|
status_ = #{degree.status,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="degree.certificateType != null">
|
|
|
certificate_type_ = #{degree.certificateType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
|
|
|
</if>
|
|
|
- update_time_ = NOW()
|
|
|
</set>
|
|
|
where id_ = #{degree.id,jdbcType=INTEGER} and tenant_id_ = #{degree.tenantId}
|
|
|
</foreach>
|
|
@@ -334,8 +326,8 @@
|
|
|
|
|
|
<select id="getUserLevelDegrees" resultMap="DegreeRegistration">
|
|
|
select * from degree_registration
|
|
|
- where user_id_ = #{userId} and degree_id_ = #{degreeId} and degree_type_ = #{degreeType}
|
|
|
- AND FIND_IN_SET(level_,#{levels}) AND subject_id_ = #{subjectId} LIMIT 1
|
|
|
+ where user_id_ = #{userId} and degree_id_ = #{degreeId} and type_ = #{type}
|
|
|
+ AND FIND_IN_SET(level_,#{levels}) AND subject_id_ = #{subjectId} AND status_ = 2 LIMIT 1
|
|
|
</select>
|
|
|
<select id="getLockByOrderId" resultMap="DegreeRegistration">
|
|
|
SELECT * FROM degree_registration WHERE order_no_ = #{orderNo} FOR UPDATE
|