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
8c51a0f7
Commit
8c51a0f7
authored
Nov 14, 2022
by
shenjunjie
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature' into 'dev'
Feature See merge request
!78
parents
8408fc8b
138f137e
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
99 additions
and
32 deletions
+99
-32
src/main/java/com/zhiwei/brandkbs2/common/RedisKeyPrefix.java
+14
-0
src/main/java/com/zhiwei/brandkbs2/controller/app/AppWarnController.java
+4
-4
src/main/java/com/zhiwei/brandkbs2/pojo/Event.java
+4
-1
src/main/java/com/zhiwei/brandkbs2/pojo/external/BrandkbsHotTopWarn.java
+14
-0
src/main/java/com/zhiwei/brandkbs2/service/impl/ProjectWarnServiceImpl.java
+0
-0
src/main/java/com/zhiwei/brandkbs2/util/RedisUtil.java
+5
-0
src/main/java/com/zhiwei/brandkbs2/util/Tools.java
+28
-0
src/main/resources/application-dev.properties
+10
-9
src/main/resources/application-local.properties
+10
-9
src/main/resources/application-prod.properties
+10
-9
No files found.
src/main/java/com/zhiwei/brandkbs2/common/RedisKeyPrefix.java
View file @
8c51a0f7
package
com
.
zhiwei
.
brandkbs2
.
common
;
package
com
.
zhiwei
.
brandkbs2
.
common
;
import
com.zhiwei.brandkbs2.auth.UserThreadLocal
;
import
com.zhiwei.brandkbs2.auth.UserThreadLocal
;
import
com.zhiwei.brandkbs2.util.Tools
;
import
java.util.Objects
;
import
java.util.Objects
;
...
@@ -82,6 +83,19 @@ public class RedisKeyPrefix {
...
@@ -82,6 +83,19 @@ public class RedisKeyPrefix {
*/
*/
private
static
final
String
EVENT_ANALYZE_PROGRESS
=
"BRANDKBS:EVENT:ANALYZE:PROGRESS:"
;
private
static
final
String
EVENT_ANALYZE_PROGRESS
=
"BRANDKBS:EVENT:ANALYZE:PROGRESS:"
;
/**
* 项目预警相关缓存
*/
public
static
final
String
PROJECT_WARN_HOT_TOP
=
"BRANDKBS:HOT_TOP:"
;
public
static
String
projectWarnHotTopKeyAll
(
String
projectId
,
String
type
)
{
return
RedisKeyPrefix
.
generateRedisKey
(
RedisKeyPrefix
.
PROJECT_WARN_HOT_TOP
,
projectId
,
Tools
.
concat
(
type
,
"*"
));
}
public
static
String
projectWarnHotTopKey
(
String
projectId
,
String
type
,
String
name
)
{
return
RedisKeyPrefix
.
generateRedisKey
(
RedisKeyPrefix
.
PROJECT_WARN_HOT_TOP
,
projectId
,
Tools
.
concat
(
type
,
name
));
}
public
static
String
eventAnalysisProgress
(
String
eventId
,
String
projectId
)
{
public
static
String
eventAnalysisProgress
(
String
eventId
,
String
projectId
)
{
return
RedisKeyPrefix
.
generateRedisKey
(
RedisKeyPrefix
.
EVENT_ANALYZE_PROGRESS
,
projectId
,
eventId
);
return
RedisKeyPrefix
.
generateRedisKey
(
RedisKeyPrefix
.
EVENT_ANALYZE_PROGRESS
,
projectId
,
eventId
);
}
}
...
...
src/main/java/com/zhiwei/brandkbs2/controller/app/AppWarnController.java
View file @
8c51a0f7
...
@@ -42,7 +42,7 @@ import java.util.Map;
...
@@ -42,7 +42,7 @@ import java.util.Map;
public
class
AppWarnController
extends
BaseController
{
public
class
AppWarnController
extends
BaseController
{
private
static
final
Logger
log
=
LogManager
.
getLogger
(
AppWarnController
.
class
);
private
static
final
Logger
log
=
LogManager
.
getLogger
(
AppWarnController
.
class
);
private
static
final
String
taskType
=
"brandkbs"
;
private
static
final
String
TASK_TYPE
=
"brandkbs"
;
@Value
(
"${jwt.key}"
)
@Value
(
"${jwt.key}"
)
private
String
jwtKey
;
private
String
jwtKey
;
...
@@ -127,7 +127,7 @@ public class AppWarnController extends BaseController {
...
@@ -127,7 +127,7 @@ public class AppWarnController extends BaseController {
headers
.
add
(
"token"
,
token
);
headers
.
add
(
"token"
,
token
);
HttpEntity
<
Object
>
request
=
new
HttpEntity
<>(
headers
);
HttpEntity
<
Object
>
request
=
new
HttpEntity
<>(
headers
);
JSONObject
data
=
restTemplate
.
exchange
(
warnTicketUrl
,
HttpMethod
.
GET
,
request
,
JSONObject
.
class
,
pushTaskId
,
taskType
).
getBody
().
getJSONObject
(
"data"
);
JSONObject
data
=
restTemplate
.
exchange
(
warnTicketUrl
,
HttpMethod
.
GET
,
request
,
JSONObject
.
class
,
pushTaskId
,
TASK_TYPE
).
getBody
().
getJSONObject
(
"data"
);
return
ResponseResult
.
success
(
data
);
return
ResponseResult
.
success
(
data
);
}
}
...
@@ -139,7 +139,7 @@ public class AppWarnController extends BaseController {
...
@@ -139,7 +139,7 @@ public class AppWarnController extends BaseController {
headers
.
add
(
"token"
,
token
);
headers
.
add
(
"token"
,
token
);
HttpEntity
<
Object
>
request
=
new
HttpEntity
<>(
headers
);
HttpEntity
<
Object
>
request
=
new
HttpEntity
<>(
headers
);
JSONArray
data
=
restTemplate
.
exchange
(
warnPushRecipientsUrl
,
HttpMethod
.
GET
,
request
,
JSONObject
.
class
,
pushTaskId
,
taskType
).
getBody
().
getJSONArray
(
"data"
);
JSONArray
data
=
restTemplate
.
exchange
(
warnPushRecipientsUrl
,
HttpMethod
.
GET
,
request
,
JSONObject
.
class
,
pushTaskId
,
TASK_TYPE
).
getBody
().
getJSONArray
(
"data"
);
return
ResponseResult
.
success
(
data
);
return
ResponseResult
.
success
(
data
);
}
}
...
@@ -152,7 +152,7 @@ public class AppWarnController extends BaseController {
...
@@ -152,7 +152,7 @@ public class AppWarnController extends BaseController {
headers
.
add
(
"token"
,
token
);
headers
.
add
(
"token"
,
token
);
HttpEntity
<
Object
>
request
=
new
HttpEntity
<>(
headers
);
HttpEntity
<
Object
>
request
=
new
HttpEntity
<>(
headers
);
JSONObject
data
=
restTemplate
.
exchange
(
deletePushRecipientsUrl
,
HttpMethod
.
GET
,
request
,
JSONObject
.
class
,
pushTaskId
,
recipientsId
,
taskType
).
getBody
().
getJSONObject
(
"data"
);
JSONObject
data
=
restTemplate
.
exchange
(
deletePushRecipientsUrl
,
HttpMethod
.
GET
,
request
,
JSONObject
.
class
,
pushTaskId
,
recipientsId
,
TASK_TYPE
).
getBody
().
getJSONObject
(
"data"
);
return
ResponseResult
.
success
(
data
);
return
ResponseResult
.
success
(
data
);
}
}
...
...
src/main/java/com/zhiwei/brandkbs2/pojo/Event.java
View file @
8c51a0f7
...
@@ -107,8 +107,11 @@ public class Event extends AbstractBaseMongo {
...
@@ -107,8 +107,11 @@ public class Event extends AbstractBaseMongo {
Event
event
=
new
Event
();
Event
event
=
new
Event
();
event
.
setTitle
(
yqEventDTO
.
getName
());
event
.
setTitle
(
yqEventDTO
.
getName
());
event
.
setStartTime
(
yqEventDTO
.
getStartTime
());
event
.
setStartTime
(
yqEventDTO
.
getStartTime
());
boolean
endStatus
=
"结束"
.
equals
(
yqEventDTO
.
getSpreadStatus
());
event
.
setEndStatus
(
endStatus
);
if
(
endStatus
)
{
event
.
setEndTime
(
yqEventDTO
.
getEndTime
());
event
.
setEndTime
(
yqEventDTO
.
getEndTime
());
event
.
setEndStatus
(
Objects
.
nonNull
(
yqEventDTO
.
getEndTime
()));
}
event
.
setKeyword
(
yqEventDTO
.
getKeyword
());
event
.
setKeyword
(
yqEventDTO
.
getKeyword
());
event
.
setEmotion
(
yqEventDTO
.
getTagInfo
().
getString
(
EventTagEnum
.
EVENT_ATTRIBUTE
.
getName
()));
event
.
setEmotion
(
yqEventDTO
.
getTagInfo
().
getString
(
EventTagEnum
.
EVENT_ATTRIBUTE
.
getName
()));
event
.
setEventTag
(
yqEventDTO
.
getTagInfo
());
event
.
setEventTag
(
yqEventDTO
.
getTagInfo
());
...
...
src/main/java/com/zhiwei/brandkbs2/pojo/external/BrandkbsHotTopWarn.java
View file @
8c51a0f7
package
com
.
zhiwei
.
brandkbs2
.
pojo
.
external
;
package
com
.
zhiwei
.
brandkbs2
.
pojo
.
external
;
import
com.alibaba.fastjson.JSONObject
;
import
lombok.AllArgsConstructor
;
import
lombok.AllArgsConstructor
;
import
lombok.Data
;
import
lombok.Data
;
import
java.math.BigDecimal
;
import
java.math.RoundingMode
;
import
java.util.List
;
import
java.util.List
;
/**
/**
...
@@ -51,6 +54,17 @@ public class BrandkbsHotTopWarn {
...
@@ -51,6 +54,17 @@ public class BrandkbsHotTopWarn {
* 上榜时间
* 上榜时间
*/
*/
private
Long
time
;
private
Long
time
;
public
static
HotTop
createFromJSON
(
JSONObject
json
,
String
topReason
,
String
topName
)
{
HotTop
hotTop
=
new
HotTop
();
hotTop
.
setTitle
(
json
.
getString
(
"name"
));
hotTop
.
setTopReason
(
topReason
);
hotTop
.
setRank
(
json
.
getString
(
"lastRank"
)
+
"名"
);
hotTop
.
setHot
(
BigDecimal
.
valueOf
(
json
.
getLongValue
(
"lastCount"
)
/
10000.00
).
setScale
(
2
,
RoundingMode
.
UP
)
+
"w"
);
hotTop
.
setTopName
(
topName
);
hotTop
.
setTime
(
json
.
getLong
(
"endTime"
));
return
hotTop
;
}
}
}
}
}
src/main/java/com/zhiwei/brandkbs2/service/impl/ProjectWarnServiceImpl.java
View file @
8c51a0f7
This diff is collapsed.
Click to expand it.
src/main/java/com/zhiwei/brandkbs2/util/RedisUtil.java
View file @
8c51a0f7
...
@@ -5,6 +5,7 @@ import org.springframework.beans.factory.annotation.Autowired;
...
@@ -5,6 +5,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import
org.springframework.data.redis.core.StringRedisTemplate
;
import
org.springframework.data.redis.core.StringRedisTemplate
;
import
org.springframework.stereotype.Component
;
import
org.springframework.stereotype.Component
;
import
java.util.Set
;
import
java.util.concurrent.TimeUnit
;
import
java.util.concurrent.TimeUnit
;
/**
/**
...
@@ -74,6 +75,10 @@ public class RedisUtil {
...
@@ -74,6 +75,10 @@ public class RedisUtil {
return
stringRedisTemplate
.
opsForValue
().
get
(
key
);
return
stringRedisTemplate
.
opsForValue
().
get
(
key
);
}
}
public
Set
<
String
>
keys
(
String
key
)
{
return
stringRedisTemplate
.
keys
(
key
);
}
public
void
remove
(
String
key
)
{
public
void
remove
(
String
key
)
{
setExpire
(
key
,
"-1"
,
1
,
TimeUnit
.
SECONDS
);
setExpire
(
key
,
"-1"
,
1
,
TimeUnit
.
SECONDS
);
}
}
...
...
src/main/java/com/zhiwei/brandkbs2/util/Tools.java
View file @
8c51a0f7
...
@@ -884,6 +884,34 @@ public class Tools {
...
@@ -884,6 +884,34 @@ public class Tools {
return
false
;
return
false
;
}
}
public
static
boolean
isExclusive
(
String
keyword
,
String
content
)
{
return
isExclusive
(
Arrays
.
asList
(
keyword
.
split
(
"\\|"
)),
content
);
}
/**
* 是否排除关键字 只有或逻辑
*
* @param filterKeywords 排除关键词
* @param data 字符串标题+内容
* @return 是否包含关键字
*/
public
static
boolean
isExclusive
(
List
<
String
>
filterKeywords
,
String
data
)
{
boolean
exclusive
=
true
;
for
(
String
key
:
filterKeywords
)
{
if
(
StringUtils
.
isBlank
(
key
)){
continue
;
}
if
(
data
.
contains
(
key
.
toLowerCase
()))
{
exclusive
=
false
;
}
if
(!
exclusive
)
{
//已经满足条件,视为有效数据,结束循环
break
;
}
}
return
exclusive
;
}
public
static
JSONObject
getBrandkbsHitMap
(
Map
<
String
,
Object
>
esMap
,
String
hitKey
)
{
public
static
JSONObject
getBrandkbsHitMap
(
Map
<
String
,
Object
>
esMap
,
String
hitKey
)
{
List
<
Map
<
String
,
Object
>>
cacheMaps
=
(
List
<
Map
<
String
,
Object
>>)
esMap
.
get
(
GenericAttribute
.
ES_BRANDKBS_CACHE_MAPS
);
List
<
Map
<
String
,
Object
>>
cacheMaps
=
(
List
<
Map
<
String
,
Object
>>)
esMap
.
get
(
GenericAttribute
.
ES_BRANDKBS_CACHE_MAPS
);
for
(
Map
<
String
,
Object
>
cacheMap
:
cacheMaps
)
{
for
(
Map
<
String
,
Object
>
cacheMap
:
cacheMaps
)
{
...
...
src/main/resources/application-dev.properties
View file @
8c51a0f7
...
@@ -82,14 +82,14 @@ whole.searchCriteria.url=https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface
...
@@ -82,14 +82,14 @@ whole.searchCriteria.url=https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface
whole.extraParam.url
=
https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface/middleware/search/extra/param
whole.extraParam.url
=
https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface/middleware/search/extra/param
#\u60C5\u62A5\u9884\u8B66\u5916\u90E8\u63A5\u53E3
#\u60C5\u62A5\u9884\u8B66\u5916\u90E8\u63A5\u53E3
warn.pushTask.token
=
AoJ0ooy3H2BpHmuaviYObTKw/Xfw/oA5aKccNYhYnoJFJQ/BgeW/
warn.pushTask.token
=
AoJ0ooy3H2BpHmuaviYObTKw/Xfw/oA5aKccNYhYnoJFJQ/BgeW/
warn.project.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/project?projectId={1}&projectName={2}
warn.project.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/project?projectId={1}&projectName={2}
warn.ticket.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/code?pushId={1}&taskType={2}
warn.ticket.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/code?pushId={1}&taskType={2}
warn.pushRecipientsList.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/pushRecipients/{1}?taskType={2}
warn.pushRecipientsList.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/pushRecipients/{1}?taskType={2}
warn.deletePushRecipients.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/pushRecipients/?pushId={1}&recipientsId={2}&taskType={3}
warn.deletePushRecipients.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/pushRecipients/?pushId={1}&recipientsId={2}&taskType={3}
warn.channel.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/config/channel/{1}
warn.channel.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/config/channel/{1}
warn.hotEvent.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/config/hotEvent/{1}
warn.hotEvent.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/config/hotEvent/{1}
warn.hotTop.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/config/hotTop/{1}
warn.hotTop.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/config/hotTop/{1}
warn.yuQing.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/config/yuQing/{1}
warn.yuQing.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/config/yuQing/{1}
warn.taskSwitch.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/enable/used
warn.taskSwitch.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/enable/used
#\u9884\u8B66\u5916\u90E8\u63A5\u53E3
#\u9884\u8B66\u5916\u90E8\u63A5\u53E3
ef.external.filterNew.url
=
https://ef.zhiweidata.com/external/filterNew.do?firstTypes={1}&start={2}&end={3}
ef.external.filterNew.url
=
https://ef.zhiweidata.com/external/filterNew.do?firstTypes={1}&start={2}&end={3}
\ No newline at end of file
src/main/resources/application-local.properties
View file @
8c51a0f7
...
@@ -84,14 +84,14 @@ whole.searchCriteria.url=https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface
...
@@ -84,14 +84,14 @@ whole.searchCriteria.url=https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface
whole.extraParam.url
=
https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface/middleware/search/extra/param
whole.extraParam.url
=
https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface/middleware/search/extra/param
#\u60C5\u62A5\u9884\u8B66\u5916\u90E8\u63A5\u53E3
#\u60C5\u62A5\u9884\u8B66\u5916\u90E8\u63A5\u53E3
warn.pushTask.token
=
AoJ0ooy3H2BpHmuaviYObTKw/Xfw/oA5aKccNYhYnoJFJQ/BgeW/
warn.pushTask.token
=
AoJ0ooy3H2BpHmuaviYObTKw/Xfw/oA5aKccNYhYnoJFJQ/BgeW/
warn.project.url
=
http://192.168.0.225:11003/qbjc/
pushTask
/interface/brandkbs/project?projectId={1}&projectName={2}
warn.project.url
=
http://192.168.0.225:11003/qbjc/
brandkbsPush
/interface/brandkbs/project?projectId={1}&projectName={2}
warn.ticket.url
=
http://192.168.0.225:11003/qbjc/
pushTask
/interface/code?pushId={1}&taskType={2}
warn.ticket.url
=
http://192.168.0.225:11003/qbjc/
brandkbsPush
/interface/code?pushId={1}&taskType={2}
warn.pushRecipientsList.url
=
http://192.168.0.225:11003/qbjc/
pushTask
/interface/pushRecipients/{1}?taskType={2}
warn.pushRecipientsList.url
=
http://192.168.0.225:11003/qbjc/
brandkbsPush
/interface/pushRecipients/{1}?taskType={2}
warn.deletePushRecipients.url
=
http://192.168.0.225:11003/qbjc/
pushTask
/interface/pushRecipients/?pushId={1}&recipientsId={2}&taskType={3}
warn.deletePushRecipients.url
=
http://192.168.0.225:11003/qbjc/
brandkbsPush
/interface/pushRecipients/?pushId={1}&recipientsId={2}&taskType={3}
warn.channel.url
=
http://192.168.0.225:11003/qbjc/
pushTask
/interface/brandkbs/config/channel/{1}
warn.channel.url
=
http://192.168.0.225:11003/qbjc/
brandkbsPush
/interface/brandkbs/config/channel/{1}
warn.hotEvent.url
=
http://192.168.0.225:11003/qbjc/
pushTask
/interface/brandkbs/config/hotEvent/{1}
warn.hotEvent.url
=
http://192.168.0.225:11003/qbjc/
brandkbsPush
/interface/brandkbs/config/hotEvent/{1}
warn.hotTop.url
=
http://192.168.0.225:11003/qbjc/
pushTask
/interface/brandkbs/config/hotTop/{1}
warn.hotTop.url
=
http://192.168.0.225:11003/qbjc/
brandkbsPush
/interface/brandkbs/config/hotTop/{1}
warn.yuQing.url
=
http://192.168.0.225:11003/qbjc/
pushTask
/interface/brandkbs/config/yuQing/{1}
warn.yuQing.url
=
http://192.168.0.225:11003/qbjc/
brandkbsPush
/interface/brandkbs/config/yuQing/{1}
warn.taskSwitch.url
=
http://192.168.0.225:11003/qbjc/
pushTask
/interface/brandkbs/enable/used
warn.taskSwitch.url
=
http://192.168.0.225:11003/qbjc/
brandkbsPush
/interface/brandkbs/enable/used
#\u9884\u8B66\u5916\u90E8\u63A5\u53E3
#\u9884\u8B66\u5916\u90E8\u63A5\u53E3
ef.external.filterNew.url
=
https://ef.zhiweidata.com/external/filterNew.do?firstTypes={1}&start={2}&end={3}
ef.external.filterNew.url
=
https://ef.zhiweidata.com/external/filterNew.do?firstTypes={1}&start={2}&end={3}
\ No newline at end of file
src/main/resources/application-prod.properties
View file @
8c51a0f7
...
@@ -82,14 +82,14 @@ whole.searchCriteria.url=https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface
...
@@ -82,14 +82,14 @@ whole.searchCriteria.url=https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface
whole.extraParam.url
=
https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface/middleware/search/extra/param
whole.extraParam.url
=
https://yuqing.zhiweidata.com/qbjcbackPhoenix/interface/middleware/search/extra/param
#\u60C5\u62A5\u9884\u8B66\u5916\u90E8\u63A5\u53E3
#\u60C5\u62A5\u9884\u8B66\u5916\u90E8\u63A5\u53E3
warn.pushTask.token
=
AoJ0ooy3H2BpHmuaviYObTKw/Xfw/oA5aKccNYhYnoJFJQ/BgeW/
warn.pushTask.token
=
AoJ0ooy3H2BpHmuaviYObTKw/Xfw/oA5aKccNYhYnoJFJQ/BgeW/
warn.project.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/project?projectId={1}&projectName={2}
warn.project.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/project?projectId={1}&projectName={2}
warn.ticket.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/code?pushId={1}&taskType={2}
warn.ticket.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/code?pushId={1}&taskType={2}
warn.pushRecipientsList.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/pushRecipients/{1}?taskType={2}
warn.pushRecipientsList.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/pushRecipients/{1}?taskType={2}
warn.deletePushRecipients.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/pushRecipients/?pushId={1}&recipientsId={2}&taskType={3}
warn.deletePushRecipients.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/pushRecipients/?pushId={1}&recipientsId={2}&taskType={3}
warn.channel.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/config/channel/{1}
warn.channel.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/config/channel/{1}
warn.hotEvent.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/config/hotEvent/{1}
warn.hotEvent.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/config/hotEvent/{1}
warn.hotTop.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/config/hotTop/{1}
warn.hotTop.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/config/hotTop/{1}
warn.yuQing.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/config/yuQing/{1}
warn.yuQing.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/config/yuQing/{1}
warn.taskSwitch.url
=
https://auto-push.zhiweidata.com/qbjc/
pushTask
/interface/brandkbs/enable/used
warn.taskSwitch.url
=
https://auto-push.zhiweidata.com/qbjc/
brandkbsPush
/interface/brandkbs/enable/used
#\u9884\u8B66\u5916\u90E8\u63A5\u53E3
#\u9884\u8B66\u5916\u90E8\u63A5\u53E3
ef.external.filterNew.url
=
https://ef.zhiweidata.com/external/filterNew.do?firstTypes={1}&start={2}&end={3}
ef.external.filterNew.url
=
https://ef.zhiweidata.com/external/filterNew.do?firstTypes={1}&start={2}&end={3}
\ No newline at end of file
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