Commit 91d40397 by jianan

hr填写报聘经纪人相关信息时报错

parent b6aa9bdb
......@@ -522,7 +522,7 @@
md.DRP_TITLE_LEVEL as titleCode,
md.DRP_TITLE_NAME as titleName
FROM sal001 p left join DRP003 md on md.DRP_TITLE_CODE = p.FK_DRP_TITLE_CODE
where p.SAL_MST_MOBILE = #{mobileNo}
where p.SAL_MST_MOBILE = #{mobileNo} limit 1
</select>
<select id="getPractitionerInfoByMobileNoForOnline" resultMap="base_result_map_practitioner_info">
......@@ -538,7 +538,7 @@
left join ag_acl_insurer_branch b on p.insurer_branch_id = b.id
left join ag_acl_practitioner_setting s on p.id = s.practitioner_id
inner join ag_md_drop_options o on s.practitioner_level = o.id
where c.login = #{mobileNo};
where c.login = #{mobileNo}
</select>
......@@ -613,7 +613,7 @@
YEAR(policy.INS_MST_ACCEPT_DATE) = YEAR(now())
</otherwise>
</choose>
group by p.SAL_MST_ID;
group by p.SAL_MST_ID
</select>
<select id="getPractitionerRankInfoForOnline" resultMap="practitioner_rank_map">
......@@ -644,7 +644,7 @@
and YEAR(f.order_date) = YEAR(now())
</otherwise>
</choose>
group by p.id;
group by p.id
</select>
......@@ -677,7 +677,7 @@
and YEAR(f.order_date) = YEAR(now())
</otherwise>
</choose>
group by p.id;
group by p.id
</select>
......@@ -820,7 +820,7 @@
<select id="findMobileNoByPractitionerId" resultType="java.lang.String">
select c.mobile_no
from ag_acl_practitioner p left join ag_acl_customer c on p.customer_id = c.id and c.is_active = 1
where p.id = #{practitionerId,jdbcType=BIGINT} limit 1;
where p.id = #{practitionerId,jdbcType=BIGINT} limit 1
</select>
<select id="findByMobileNoE" resultType="com.yd.dal.entity.customer.practitioner.PractitionerBasicInfo">
SELECT
......@@ -904,7 +904,7 @@
t.CREATE_USER as createUser
from mon011 t INNER JOIN mon025 m ON m.MON025_007 = t.FK_SAL_MST_ID
INNER JOIN mon006 cl on t.MON_DTL_PERIOD = cl.MON_CLS_PERIOD and cl.MON_CLS_TYPE = 1
WHERE m.MON025_109 = 7 AND t.FK_SAL_MST_ID = #{practitionerIdEG,jdbcType=VARCHAR};
WHERE m.MON025_109 = 7 AND t.FK_SAL_MST_ID = #{practitionerIdEG,jdbcType=VARCHAR}
</select>
<select id="findFilePathByMonShId" resultType="com.yd.dal.entity.practitioner.payscale.PayScaleBasicInfo">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment