<기능개선>
1. PMS NO : 22.05.17 추가 수정 2. (주요)작업내용 (1) MyBatis/Maps/Lect.xml - 조건절에 상태 비교 구문 추가
This commit is contained in:
parent
2095256937
commit
2f711ba6b6
|
|
@ -1990,7 +1990,7 @@
|
||||||
from lect t1
|
from lect t1
|
||||||
inner join cm t2 on t1.cmno = t2.cmno
|
inner join cm t2 on t1.cmno = t2.cmno
|
||||||
inner join cg t3 on t2.cgno= t3.cgno
|
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
|
)t
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
@ -2010,7 +2010,7 @@
|
||||||
from lect t1
|
from lect t1
|
||||||
inner join cm t2 on t1.cmno = t2.cmno
|
inner join cm t2 on t1.cmno = t2.cmno
|
||||||
inner join cg t3 on t2.cgno= t3.cgno
|
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
|
)t
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue