@@ -21,4 +21,6 @@ public class KlDiagnoseInfoVO extends Page {
* 启用状态(0:禁用,1:启用)
*/
private Integer status;
+
+ private String conceptName;
}
@@ -128,6 +128,9 @@
<if test="description!=null and description!=''">
AND UPPER(dia.description) LIKE CONCAT('%', UPPER(trim(#{description})), '%')
</if>
+ <if test="conceptName!=null and conceptName!=''">
+ AND UPPER(con.lib_name) LIKE CONCAT('%', UPPER(trim(#{conceptName})), '%')
+ </if>
<if test="status!=null">
AND dia.status = #{status}