标签分类
This commit is contained in:
parent
8d29ed67ca
commit
9e22d80d32
@ -37,5 +37,7 @@ public class Label extends TenantBaseDO {
|
|||||||
private String systemCode;
|
private String systemCode;
|
||||||
/**标签样式*/
|
/**标签样式*/
|
||||||
private String labelType;
|
private String labelType;
|
||||||
|
/**分类*/
|
||||||
|
private String type;
|
||||||
|
|
||||||
}
|
}
|
@ -12,6 +12,9 @@
|
|||||||
<if test="entity.labelName != null and entity.cusName != ''">
|
<if test="entity.labelName != null and entity.cusName != ''">
|
||||||
AND label_name LIKE concat('%',#{entity.labelName},'%')
|
AND label_name LIKE concat('%',#{entity.labelName},'%')
|
||||||
</if>
|
</if>
|
||||||
|
<if test="entity.type != null and entity.type != ''">
|
||||||
|
AND type = #{entity.type}
|
||||||
|
</if>
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
Loading…
Reference in New Issue
Block a user