解决pad首页查询服务指令数量sql报错问题
This commit is contained in:
parent
1ca1487be2
commit
c6e553467d
|
|
@ -140,7 +140,7 @@
|
|||
<select id="queryTotal" resultType="java.lang.Integer">
|
||||
SELECT COUNT(p.id) as total_count
|
||||
FROM nu_biz_nu_care_directive_plan p
|
||||
WHERE p.nu_id = #{dto.nuId}
|
||||
WHERE p.nu_id = #{nuId}
|
||||
AND (
|
||||
-- 1: 每天执行
|
||||
p.cycle_type_id = '1'
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<select id="queryTotal" resultType="java.lang.Integer">
|
||||
SELECT COUNT(p.id) as total_count
|
||||
FROM nu_biz_nu_invoicing_directive_plan p
|
||||
WHERE p.nu_id = #{dto.nuId}
|
||||
WHERE p.nu_id = #{nuId}
|
||||
AND (
|
||||
-- 1: 每天执行
|
||||
p.cycle_type_id = '1'
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<select id="queryTotal" resultType="java.lang.Integer">
|
||||
SELECT COUNT(p.id) as total_count
|
||||
FROM nu_biz_nu_logistics_directive_plan p
|
||||
WHERE p.nu_id = #{dto.nuId}
|
||||
WHERE p.nu_id = #{nuId}
|
||||
AND (
|
||||
-- 1: 每天执行
|
||||
p.cycle_type_id = '1'
|
||||
|
|
|
|||
Loading…
Reference in New Issue