|
@@ -10,6 +10,8 @@
|
|
|
<result column="mode_id" property="modeId" />
|
|
|
<result column="code" property="code" />
|
|
|
<result column="name" property="name" />
|
|
|
+ <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" />
|
|
@@ -33,6 +35,12 @@
|
|
|
<if test="ruleType != null">
|
|
|
AND a.rule_type = #{ruleType}
|
|
|
</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>
|