Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
task2.0
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
首航-临时账号
task2.0
Commits
c7557997
Commit
c7557997
authored
Jul 10, 2020
by
java-李谡
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交测试
parent
9dc0393b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
17 deletions
+16
-17
org.eclipse.jdt.core.prefs
.settings/org.eclipse.jdt.core.prefs
+0
-12
history.properties
history.properties
+3
-3
SoundService.java
src/com/foc/sound/service/SoundService.java
+8
-2
SoundDbTaskMain.java
src/com/foc/task/SoundDbTaskMain.java
+5
-0
Util.java
src/com/foc/util/Util.java
+0
-0
No files found.
.settings/org.eclipse.jdt.core.prefs
deleted
100644 → 0
View file @
9dc0393b
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.7
history.properties
View file @
c7557997
#\u7A0B\u5E8F\u8FD0\u884C\u8BB0\u5F55
#
Mon Sep 04 10:06:34 CST 2017
#
Wed Nov 27 12:41:05 CST 2019
push.task.is.running
=
0
ods.task.last.time
=
2016-10-27 17
\:
53
\:
32
dynamics.task.is.running
=
0
...
...
@@ -9,10 +9,10 @@ dynamics.task.last.time=2017-08-05 16\:59\:20
ods.task.is.running
=
0
foc.flight.assignment.page.index
=
2
sound.db.task.is.running
=
0
sound.task.is.running
=
0
push.task.last.time
=
2017-02-23 15
\:
27
\:
00
sound.task.is.running
=
0
ods.change.task.last.time
=
2016-12-22 14
\:
27
\:
19
sound.task.last.time
=
201
7-09-04 10
\:
06
\:
33
sound.task.last.time
=
201
9-11-27 12
\:
40
\:
40
assignment.task.last.time
=
2016-12-03 18
\:
05
\:
20
ods.change.task.is.running
=
0
foc.sound.page.index
=
2
...
...
src/com/foc/sound/service/SoundService.java
View file @
c7557997
...
...
@@ -505,24 +505,28 @@ public class SoundService {
UserInfo
callUser
=
new
UserInfo
();
if
(
StringUtils
.
isNoneBlank
(
entity
.
getCallNo
()))
{
callUser
=
GetIdByPhone
(
entity
.
getCallNo
());
System
.
out
.
println
(
"主叫号码:"
+
entity
.
getCallNo
());
if
(
callUser
==
null
)
{
System
.
out
.
println
(
"未查询到主叫号码用户信息"
);
callUser
=
new
UserInfo
();
callUser
.
setId
(
"1"
);
callUser
.
setName
(
entity
.
getCallNo
());
}
System
.
out
.
println
(
"主叫号码用户信息:"
+
callUser
.
getId
());
}
else
{
return
;
}
UserInfo
acceptUser
=
new
UserInfo
();
if
(
StringUtils
.
isNoneBlank
(
entity
.
getAcceptNo
()))
{
System
.
out
.
println
(
"被叫号码:"
+
entity
.
getAcceptNo
());
acceptUser
=
GetIdByPhone
(
entity
.
getAcceptNo
());
if
(
acceptUser
==
null
)
{
System
.
out
.
println
(
"未查询到主叫号码用户信息"
);
acceptUser
=
new
UserInfo
();
acceptUser
.
setId
(
"1"
);
acceptUser
.
setName
(
entity
.
getAcceptNo
());
}
System
.
out
.
println
(
"被叫号码用户信息:"
+
acceptUser
.
getId
());
}
else
{
return
;
}
...
...
@@ -804,5 +808,7 @@ public class SoundService {
DBHandler
dBHandler
=
new
DBHandler
();
dBHandler
.
batchInsert
(
Constants
.
FOC_CALLSOUND_RECORDS
,
columnMapList
);
}
}
src/com/foc/task/SoundDbTaskMain.java
View file @
c7557997
...
...
@@ -228,4 +228,9 @@ public class SoundDbTaskMain {
}
return
defaultId
;
}
// public static void main(String[] args) {
// SoundService soundService = new SoundService();
// soundService.GetIdByPhone("6136");
// }
}
src/com/foc/util/Util.java
View file @
c7557997
This diff is collapsed.
Click to expand it.
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