|
@@ -13,6 +13,8 @@
|
|
|
<result column="rule_type" property="ruleType" />
|
|
|
<result column="dev_type" property="devType" />
|
|
|
<result column="accuracy_type" property="accuracyType" />
|
|
|
+ <result column="drgs" property="drgs" />
|
|
|
+ <result column="type" property="type" />
|
|
|
<result column="precond" property="precond" />
|
|
|
<result column="order_no" property="orderNo" />
|
|
|
<result column="remark" property="remark" />
|
|
@@ -42,6 +44,12 @@
|
|
|
<if test="accuracyType != null">
|
|
|
AND a.accuracy_type = #{accuracyType}
|
|
|
</if>
|
|
|
+ <if test="drgs != null">
|
|
|
+ AND a.drgs = #{drgs}
|
|
|
+ </if>
|
|
|
+ <if test="type != null">
|
|
|
+ AND a.type = #{type}
|
|
|
+ </if>
|
|
|
<if test="name != null and name != ''">
|
|
|
AND UPPER(a.name) LIKE CONCAT('%', UPPER(trim(#{name})), '%')
|
|
|
</if>
|
|
@@ -269,7 +277,7 @@
|
|
|
AND t2.case_entry_id = #{entryId}
|
|
|
)
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<delete id="deleteQcTypeEntry">
|
|
|
DELETE t2
|
|
|
FROM
|