|
@@ -9,7 +9,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="usrName" column="usr_name" />
|
|
|
<result property="tel" column="tel" />
|
|
|
<result property="orgUnitName" column="org_unit_name" />
|
|
|
- <result property="uniLevle" column="uni_levle" />
|
|
|
+ <result property="uniLevel" column="uni_level" />
|
|
|
<result property="email" column="email" />
|
|
|
<result property="usrType" column="usr_type" />
|
|
|
<result property="conferenceFlag" column="conference_flag" />
|
|
@@ -26,7 +26,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectCpsUsrApplyVo">
|
|
|
- select id, usr_name, tel, org_unit_name, uni_levle, email, usr_type, conference_flag, conference_rel, apply_type, review_state, review_msg, usr_wechat_id, content_id, update_time, create_time, create_by, update_by from cps_usr_apply
|
|
|
+ select id, usr_name, tel, org_unit_name, uni_level, email, usr_type, conference_flag, conference_rel, apply_type, review_state, review_msg, usr_wechat_id, content_id, update_time, create_time, create_by, update_by from cps_usr_apply
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectCpsUsrApplyList" parameterType="com.ruoyi.system.domain.CpsUsrApply" resultMap="CpsUsrApplyResult">
|
|
@@ -35,7 +35,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="usrName != null and usrName != ''"> and usr_name like concat('%', #{usrName}, '%')</if>
|
|
|
<if test="tel != null and tel != ''"> and tel = #{tel}</if>
|
|
|
<if test="orgUnitName != null and orgUnitName != ''"> and org_unit_name like concat('%', #{orgUnitName}, '%')</if>
|
|
|
- <if test="uniLevle != null and uniLevle != ''"> and uni_levle = #{uniLevle}</if>
|
|
|
+ <if test="uniLevel != null and uniLevel != ''"> and uni_levle = #{uniLevel}</if>
|
|
|
<if test="usrType != null and usrType != ''"> and usr_type = #{usrType}</if>
|
|
|
<if test="conferenceFlag != null and conferenceFlag != ''"> and conference_flag = #{conferenceFlag}</if>
|
|
|
<if test="applyType != null and applyType != ''"> and apply_type = #{applyType}</if>
|
|
@@ -54,7 +54,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="usrName != null">usr_name,</if>
|
|
|
<if test="tel != null">tel,</if>
|
|
|
<if test="orgUnitName != null">org_unit_name,</if>
|
|
|
- <if test="uniLevle != null">uni_levle,</if>
|
|
|
+ <if test="uniLevel != null">uni_level,</if>
|
|
|
<if test="email != null">email,</if>
|
|
|
<if test="usrType != null">usr_type,</if>
|
|
|
<if test="conferenceFlag != null">conference_flag,</if>
|
|
@@ -73,7 +73,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="usrName != null">#{usrName},</if>
|
|
|
<if test="tel != null">#{tel},</if>
|
|
|
<if test="orgUnitName != null">#{orgUnitName},</if>
|
|
|
- <if test="uniLevle != null">#{uniLevle},</if>
|
|
|
+ <if test="uniLevel != null">#{uniLevel},</if>
|
|
|
<if test="email != null">#{email},</if>
|
|
|
<if test="usrType != null">#{usrType},</if>
|
|
|
<if test="conferenceFlag != null">#{conferenceFlag},</if>
|
|
@@ -96,7 +96,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="usrName != null">usr_name = #{usrName},</if>
|
|
|
<if test="tel != null">tel = #{tel},</if>
|
|
|
<if test="orgUnitName != null">org_unit_name = #{orgUnitName},</if>
|
|
|
- <if test="uniLevle != null">uni_levle = #{uniLevle},</if>
|
|
|
+ <if test="uniLevel != null">uni_level = #{uniLevel},</if>
|
|
|
<if test="email != null">email = #{email},</if>
|
|
|
<if test="usrType != null">usr_type = #{usrType},</if>
|
|
|
<if test="conferenceFlag != null">conference_flag = #{conferenceFlag},</if>
|