<기능개선>

1. PMS NO : 22.05.17 추가 수정
2. (주요)작업내용 
(1) MyBatis/Maps/Lect.xml
 - 조건절에 상태 비교 구문 추가
This commit is contained in:
jity7777 2022-05-17 04:20:41 +00:00
parent 2095256937
commit 2f711ba6b6
1 changed files with 2 additions and 2 deletions

View File

@ -1990,7 +1990,7 @@
from lect t1
inner join cm t2 on t1.cmno = t2.cmno
inner join cg t3 on t2.cgno= t3.cgno
where t2.isdel= 0 and t2.isuse= 1 and t2.ismaster = 0 and t1.userno = #userno# and t2.pcmno = #pcmno#
where (t1.status = 1 or t1.status = 2) and t2.isdel= 0 and t2.isuse= 1 and t2.ismaster = 0 and t1.userno = #userno# and t2.pcmno = #pcmno#
)t
</select>
@ -2010,7 +2010,7 @@
from lect t1
inner join cm t2 on t1.cmno = t2.cmno
inner join cg t3 on t2.cgno= t3.cgno
where t2.isdel= 0 and t2.isuse= 1 and t2.ismaster = 0 and t1.userno = #userno# and t2.pcmno = #pcmno#
where (t1.status = 1 or t1.status = 2) and t2.isdel= 0 and t2.isuse= 1 and t2.ismaster = 0 and t1.userno = #userno# and t2.pcmno = #pcmno#
)t
</select>