Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
middleware-automatic
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
middleware-automatic
Commits
ba209a0e
Commit
ba209a0e
authored
Dec 02, 2024
by
liuyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2024/12/02 cidRecord实体修改
parent
32a2630d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
123 additions
and
3 deletions
+123
-3
middleware-automatic-center-son/src/main/java/com/zhiwei/middleware/automatic/son/dao/CidRecordDao.java
+1
-1
middleware-automatic-center-son/src/main/java/com/zhiwei/middleware/automatic/son/dao/impl/CidRecordDaoImpl.java
+1
-1
middleware-automatic-center-son/src/main/java/com/zhiwei/middleware/automatic/son/pojo/CidRecord.java
+120
-0
middleware-automatic-center-son/src/main/java/com/zhiwei/middleware/automatic/son/task/service/TaskServiceCidRecord.java
+1
-1
No files found.
middleware-automatic-center-son/src/main/java/com/zhiwei/middleware/automatic/son/dao/CidRecordDao.java
View file @
ba209a0e
package
com
.
zhiwei
.
middleware
.
automatic
.
son
.
dao
;
import
com.zhiwei.middleware.automatic.s
erver
.pojo.CidRecord
;
import
com.zhiwei.middleware.automatic.s
on
.pojo.CidRecord
;
public
interface
CidRecordDao
{
...
...
middleware-automatic-center-son/src/main/java/com/zhiwei/middleware/automatic/son/dao/impl/CidRecordDaoImpl.java
View file @
ba209a0e
package
com
.
zhiwei
.
middleware
.
automatic
.
son
.
dao
.
impl
;
import
com.zhiwei.middleware.automatic.s
erver
.pojo.CidRecord
;
import
com.zhiwei.middleware.automatic.s
on
.pojo.CidRecord
;
import
com.zhiwei.middleware.automatic.son.dao.CidRecordDao
;
import
com.zhiwei.middleware.automatic.son.util.Tools
;
import
org.springframework.beans.factory.annotation.Qualifier
;
...
...
middleware-automatic-center-son/src/main/java/com/zhiwei/middleware/automatic/son/pojo/CidRecord.java
0 → 100644
View file @
ba209a0e
package
com
.
zhiwei
.
middleware
.
automatic
.
son
.
pojo
;
public
class
CidRecord
{
private
String
id
;
private
Long
c4
;
private
Long
c5
;
private
int
foreign
;
private
String
url
;
private
Long
time
;
private
Long
ctime
;
private
Long
stime
;
private
String
esId
;
private
Long
cid
;
public
Long
getC5
()
{
return
c5
;
}
public
void
setC5
(
Long
c5
)
{
this
.
c5
=
c5
;
}
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
Long
getC4
()
{
return
c4
;
}
public
void
setC4
(
Long
c4
)
{
this
.
c4
=
c4
;
}
public
int
getForeign
()
{
return
foreign
;
}
public
void
setForeign
(
int
foreign
)
{
this
.
foreign
=
foreign
;
}
public
String
getUrl
()
{
return
url
;
}
public
void
setUrl
(
String
url
)
{
this
.
url
=
url
;
}
public
Long
getTime
()
{
return
time
;
}
public
void
setTime
(
Long
time
)
{
this
.
time
=
time
;
}
public
Long
getCtime
()
{
return
ctime
;
}
public
void
setCtime
(
Long
ctime
)
{
this
.
ctime
=
ctime
;
}
public
Long
getStime
()
{
return
stime
;
}
public
void
setStime
(
Long
stime
)
{
this
.
stime
=
stime
;
}
public
String
getEsId
()
{
return
esId
;
}
public
void
setEsId
(
String
esId
)
{
this
.
esId
=
esId
;
}
public
Long
getCid
()
{
return
cid
;
}
public
void
setCid
(
Long
cid
)
{
this
.
cid
=
cid
;
}
@Override
public
String
toString
()
{
return
"CidRecord{"
+
"id='"
+
id
+
'\''
+
", c4="
+
c4
+
", c5="
+
c5
+
", foreign="
+
foreign
+
", url='"
+
url
+
'\''
+
", time="
+
time
+
", ctime="
+
ctime
+
", stime="
+
stime
+
", esId='"
+
esId
+
'\''
+
", cid="
+
cid
+
'}'
;
}
}
middleware-automatic-center-son/src/main/java/com/zhiwei/middleware/automatic/son/task/service/TaskServiceCidRecord.java
View file @
ba209a0e
...
...
@@ -3,10 +3,10 @@ package com.zhiwei.middleware.automatic.son.task.service;
import
com.alibaba.excel.util.CollectionUtils
;
import
com.alibaba.fastjson.JSONObject
;
import
com.zhiwei.middleware.automatic.server.pojo.AutoTask
;
import
com.zhiwei.middleware.automatic.server.pojo.CidRecord
;
import
com.zhiwei.middleware.automatic.server.pojo.enums.TaskType
;
import
com.zhiwei.middleware.automatic.server.util.RedissonUtil
;
import
com.zhiwei.middleware.automatic.son.dao.CidRecordDao
;
import
com.zhiwei.middleware.automatic.son.pojo.CidRecord
;
import
org.apache.logging.log4j.LogManager
;
import
org.springframework.beans.factory.annotation.Qualifier
;
import
org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor
;
...
...
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