|
|
|
@ -25,6 +25,7 @@ |
|
|
|
<result column="REMARKS" property="remarks"/> |
|
|
|
<result column="REMARKS" property="remarks"/> |
|
|
|
<result column="STATUS" property="status"/> |
|
|
|
<result column="STATUS" property="status"/> |
|
|
|
<result column="IS_DELETED" property="isDeleted"/> |
|
|
|
<result column="IS_DELETED" property="isDeleted"/> |
|
|
|
|
|
|
|
<result column="JC_ID" property="jcId"/> |
|
|
|
</resultMap> |
|
|
|
</resultMap> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -35,6 +36,9 @@ |
|
|
|
<if test="param2.month != null and param2.month != ''"> |
|
|
|
<if test="param2.month != null and param2.month != ''"> |
|
|
|
and MONTH = #{param2.month} |
|
|
|
and MONTH = #{param2.month} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
|
|
|
|
<if test="param2.jcId != null and param2.jcId != ''"> |
|
|
|
|
|
|
|
and JC_ID = #{param2.jcId} |
|
|
|
|
|
|
|
</if> |
|
|
|
</where> |
|
|
|
</where> |
|
|
|
</select> |
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
|