@@ -31,6 +31,7 @@
<include refid="infoColumns"/>
FROM sg_wbs_item a
<where>
+ a.del_flag = '0'
<if test="itemName != null and itemName != ''">
AND a.item_name LIKE CONCAT(CONCAT('%',#{itemName},'%'))
</if>
@@ -62,7 +62,7 @@
<if test="projectEndDate != null and projectEndDate != ''">
a.create_date <= #{projectEndDate} AND
- 1 = 1
</where>
ORDER BY a.update_date DESC