Commit 2ce916c3 authored by litengwei's avatar litengwei

子任务配置BUG

parent 6e7ce862
...@@ -55,9 +55,9 @@ ...@@ -55,9 +55,9 @@
<select id="roleCodes" resultType="string"> <select id="roleCodes" resultType="string">
SELECT SELECT
f.dict_value f.code
FROM FROM
c_emergency_relation cer LEFT JOIN f_dict f ON cer.obligationId = f.id c_emergency_relation cer LEFT JOIN c_emergency_task_role f ON cer.obligationId = f.id
<where> <where>
<if test="_parameter != null "> <if test="_parameter != null ">
cer.amos_id = #{amosOrgId} cer.amos_id = #{amosOrgId}
...@@ -67,9 +67,9 @@ ...@@ -67,9 +67,9 @@
<select id="roleNames" resultType="string"> <select id="roleNames" resultType="string">
SELECT SELECT
f.dict_name AS dictName f.name AS dictName
FROM FROM
c_emergency_relation cer LEFT JOIN f_dict f ON cer.obligationId = f.id c_emergency_relation cer LEFT JOIN c_emergency_task_role f ON cer.obligationId = f.id
<where> <where>
<if test="_parameter != null "> <if test="_parameter != null ">
cer.amos_id = #{amosOrgId} cer.amos_id = #{amosOrgId}
......
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