|
|
|
@ -79,15 +79,22 @@
|
|
|
|
|
<if test = "schVhrno != null">
|
|
|
|
|
AND C.VHRNO = #{schVhrno} /* 차량번호 */
|
|
|
|
|
</if>
|
|
|
|
|
<choose>
|
|
|
|
|
<when test="delYn != null">
|
|
|
|
|
AND CRR.DEL_YN = #{delYn} /* 삭제 여부 */
|
|
|
|
|
</when>
|
|
|
|
|
<otherwise>
|
|
|
|
|
AND CRR.DEL_YN = 'N' /* 삭제 여부 */
|
|
|
|
|
</otherwise>
|
|
|
|
|
</choose>
|
|
|
|
|
</where>
|
|
|
|
|
AND CRR.CRDN_REG_SE_CD = '03' /* 단속 등록 구분 코드 - FIM026 */
|
|
|
|
|
AND CRR.DEL_YN = 'N' /* 삭제 여부 */
|
|
|
|
|
AND C.SGG_CD = #{sggCd} /* 시군구 코드 */
|
|
|
|
|
<if test="taskSeCd != null">
|
|
|
|
|
AND C.TASK_SE_CD = #{taskSeCd} /* 업무 구분 코드 */
|
|
|
|
|
</if>
|
|
|
|
|
<if test="delYn != null">
|
|
|
|
|
AND C.DEL_YN = #{delYn} /* 삭제 여부 */
|
|
|
|
|
<if test="crdnDelYn != null">
|
|
|
|
|
AND C.DEL_YN = #{crdnDelYn} /* 삭제 여부 */
|
|
|
|
|
</if>
|
|
|
|
|
<if test="by != null and by != '' and term != null">
|
|
|
|
|
<choose>
|
|
|
|
@ -125,12 +132,17 @@
|
|
|
|
|
<if test="reRegId != null">
|
|
|
|
|
AND CRR.RE_REG_ID = #{reRegId} /* 재등록 ID */
|
|
|
|
|
</if>
|
|
|
|
|
<choose>
|
|
|
|
|
<when test="delYn != null">
|
|
|
|
|
AND CRR.DEL_YN = #{delYn} /* 삭제 여부 */
|
|
|
|
|
</when>
|
|
|
|
|
<otherwise>
|
|
|
|
|
AND CRR.DEL_YN = 'N' /* 삭제 여부 */
|
|
|
|
|
</otherwise>
|
|
|
|
|
</choose>
|
|
|
|
|
<if test="crdnId != null">
|
|
|
|
|
AND C.CRDN_ID = #{crdnId} /* 단속 ID */
|
|
|
|
|
</if>
|
|
|
|
|
<if test="delYn != null">
|
|
|
|
|
AND CRR.DEL_YN = #{delYn} /* 삭제 여부 */
|
|
|
|
|
</if>
|
|
|
|
|
</where>
|
|
|
|
|
<include refid="utility.orderBy" />
|
|
|
|
|
</select>
|
|
|
|
|