Commit 5984068b authored by luben's avatar luben

Merge branch 'dev' into 'main'

Dev

See merge request !39
parents db131309 a4bf47c3
Pipeline #142948 canceled with stages
in 1 minute and 27 seconds
......@@ -214,6 +214,9 @@ public class LabelsFacadeService {
List<Map<String, Object>> res = new ArrayList<>();
for (Map<String, Object> map : jsTreeModels) {
String scope = (String) map.get("scope");
if(scope == null){
continue;
}
if(scope.contains(bsCommonVO.getScope())){
res.add(map);
}
......
......@@ -167,6 +167,9 @@
<if test="ylzd5 != null">
ylzd5,
</if>
<if test="scope != null">
scope,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">
......@@ -205,6 +208,9 @@
<if test="ylzd5 != null">
#{ylzd5,jdbcType=VARCHAR},
</if>
<if test="scope != null">
#{scope,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<select id="countByExample" parameterType="com.ruoyi.system.domain.other.BsCommonExample" resultType="java.lang.Long">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment