Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
brandkbs2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
shenjunjie
brandkbs2
Commits
f4aa7270
Commit
f4aa7270
authored
Mar 28, 2023
by
陈健智
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
事件列表事件标签筛选调整
parent
1d9463b5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
14 deletions
+3
-14
src/main/java/com/zhiwei/brandkbs2/controller/mobile/MobileEventController.java
+1
-1
src/main/java/com/zhiwei/brandkbs2/controller/mobile/MobileSearchController.java
+1
-1
src/main/java/com/zhiwei/brandkbs2/dao/EventMiddlewareDao.java
+0
-6
src/main/java/com/zhiwei/brandkbs2/dao/impl/EventMiddlewareDaoImpl.java
+0
-5
src/main/java/com/zhiwei/brandkbs2/service/impl/EventServiceImpl.java
+1
-1
No files found.
src/main/java/com/zhiwei/brandkbs2/controller/mobile/MobileEventController.java
View file @
f4aa7270
...
...
@@ -70,7 +70,7 @@ public class MobileEventController extends BaseController {
List
<
MarkerTag
>
tags
=
commonService
.
getQbjcTags
(
linkedGroupId
,
TagField
.
GROUP_NAME
.
is
(
"情感倾向"
));
tags
.
forEach
(
tag
->
{
if
(
tag
.
getName
().
equals
(
emotionName
))
{
dto
.
setEmotion
(
tag
.
getUniqueId
(
));
dto
.
setEmotion
s
(
Collections
.
singletonList
(
tag
.
getUniqueId
()
));
}
});
}
...
...
src/main/java/com/zhiwei/brandkbs2/controller/mobile/MobileSearchController.java
View file @
f4aa7270
...
...
@@ -97,7 +97,7 @@ public class MobileSearchController {
List
<
MarkerTag
>
tags
=
commonService
.
getQbjcTags
(
linkedGroupId
,
TagField
.
GROUP_NAME
.
is
(
"情感倾向"
));
tags
.
forEach
(
tag
->
{
if
(
tag
.
getName
().
equals
(
emotionName
))
{
dto
.
setEmotion
(
tag
.
getUniqueId
(
));
dto
.
setEmotion
s
(
Collections
.
singletonList
(
tag
.
getUniqueId
()
));
}
});
}
...
...
src/main/java/com/zhiwei/brandkbs2/dao/EventMiddlewareDao.java
View file @
f4aa7270
...
...
@@ -31,12 +31,6 @@ public interface EventMiddlewareDao {
PageData
<
EventListInfoVO
>
getEventListBrandkbs
(
BrandkbsEventSearchDTO
dto
);
/**
* 按筛选条件获取事件列表-新
* @param dto
* @return
*/
PageData
<
EventListInfoVO
>
getEventListBrandkbsNew
(
BrandkbsEventSearchDTO
dto
);
/**
* 根据id删除事件
* @param eventId
* @return
...
...
src/main/java/com/zhiwei/brandkbs2/dao/impl/EventMiddlewareDaoImpl.java
View file @
f4aa7270
...
...
@@ -48,11 +48,6 @@ public class EventMiddlewareDaoImpl implements EventMiddlewareDao {
}
@Override
public
PageData
<
EventListInfoVO
>
getEventListBrandkbsNew
(
BrandkbsEventSearchDTO
dto
)
{
return
eventClient
.
getEventListBrandkbsNew
(
dto
);
}
@Override
public
ReturnData
deleteEvent
(
String
eventId
)
{
return
eventClient
.
deleteEvent
(
eventId
);
}
...
...
src/main/java/com/zhiwei/brandkbs2/service/impl/EventServiceImpl.java
View file @
f4aa7270
...
...
@@ -772,7 +772,7 @@ public class EventServiceImpl implements EventService {
if
(
Constant
.
PRIMARY_CONTEND_ID
.
equals
(
dto
.
getBrandId
())){
dto
.
setBrandId
(
UserThreadLocal
.
getProjectId
());
}
return
eventMiddlewareDao
.
getEventListBrandkbs
New
(
dto
);
return
eventMiddlewareDao
.
getEventListBrandkbs
(
dto
);
}
@Override
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment