Pārlūkot izejas kodu

feat:产品要素母子基金标签调整

chenjianhua 2 nedēļas atpakaļ
vecāks
revīzija
d556f7274e

+ 1 - 1
service-base/src/main/resources/mapper/daq/ChannelMapper.xml

@@ -64,7 +64,7 @@
         select info.id,
         info.channel_name,
         info.channel_remark,
-        wm_concat(e.email) as email,
+        group_concat(e.email) as email,
         info.createtime,
         info.updatetime,
         info.isvalid,

+ 2 - 2
service-base/src/main/resources/mapper/daq/system/SysUserMapper.xml

@@ -200,8 +200,8 @@
                su.user_id as userId,
                su.user_name as userName,
                su.user_type as userType,
-               wm_concat(ci.id) as channelId,
-               wm_concat(ci.channel_name) as channelName
+               group_concat(ci.id) as channelId,
+               group_concat(ci.channel_name) as channelName
         from sys_user su
         left join user_channel_mapping ucm
         on su.user_id = ucm.user_id and ucm.isvalid=1