|
|
@@ -24,7 +24,7 @@
|
|
|
WHERE
|
|
|
r.role_name = '法务'
|
|
|
AND l.policy_id = #{policyId}
|
|
|
- and l.approval_content != null
|
|
|
+ and l.approval_content is NOT NULL
|
|
|
ORDER BY
|
|
|
l.create_time DESC
|
|
|
LIMIT 1
|
|
|
@@ -37,7 +37,7 @@
|
|
|
select * from ctop_cwjs_policy_approval_log
|
|
|
where policy_id = #{policyId}
|
|
|
and approval_status = #{status}
|
|
|
- and approval_content != null
|
|
|
+ and approval_content is NOT NULL
|
|
|
order by create_time desc
|
|
|
LIMIT 1
|
|
|
</select>
|