标签分类

This commit is contained in:
PQZ 2024-08-07 15:52:15 +08:00
parent 8d29ed67ca
commit 9e22d80d32
2 changed files with 5 additions and 0 deletions

View File

@ -37,5 +37,7 @@ public class Label extends TenantBaseDO {
private String systemCode; private String systemCode;
/**标签样式*/ /**标签样式*/
private String labelType; private String labelType;
/**分类*/
private String type;
} }

View File

@ -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>