Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
InternalLogic
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
CrossProvincialPlatform
InternalLogic
Commits
ed526442
Commit
ed526442
authored
May 25, 2021
by
华润
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码提交内置机
parent
08c410cc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
556 additions
and
1 deletion
+556
-1
pom.xml
pom.xml
+12
-1
src/main/java/net/cdkj/gjj/adapter/controller/ProvidentFundServicesController.java
...j/adapter/controller/ProvidentFundServicesController.java
+261
-0
src/main/java/net/cdkj/gjj/adapter/domain/UnitAccountOpeningInformation.java
...dkj/gjj/adapter/domain/UnitAccountOpeningInformation.java
+283
-0
No files found.
pom.xml
View file @
ed526442
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
>
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
net.cdkj.gjj
</groupId>
<groupId>
net.cdkj.gjj
</groupId>
<artifactId>
adapter
</artifactId>
<artifactId>
InternalLogic
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<version>
0.0.1-SNAPSHOT
</version>
<packaging>
war
</packaging>
<packaging>
war
</packaging>
<name>
InternalLogic
</name>
<name>
InternalLogic
</name>
...
@@ -38,6 +38,17 @@
...
@@ -38,6 +38,17 @@
</exclusion>
</exclusion>
</exclusions>
</exclusions>
</dependency>
</dependency>
<!-- <dependency>-->
<!-- <groupId>net.sf.json-lib</groupId>-->
<!-- <artifactId>json-lib</artifactId>-->
<!-- <version>2.4</version>-->
<!-- <classifier>jdk15</classifier>-->
<!-- </dependency>-->
<dependency>
<groupId>
com.alibaba
</groupId>
<artifactId>
fastjson
</artifactId>
<version>
1.2.68
</version>
</dependency>
</dependencies>
</dependencies>
<dependencyManagement>
<dependencyManagement>
...
...
src/main/java/net/cdkj/gjj/adapter/controller/ProvidentFundServicesController.java
0 → 100644
View file @
ed526442
package
net.cdkj.gjj.adapter.controller
;
import
com.alibaba.fastjson.JSONObject
;
import
net.cdkj.gjj.adapter.domain.UnitAccountOpeningInformation
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.io.*
;
import
java.net.HttpURLConnection
;
import
java.net.URL
;
import
java.sql.CallableStatement
;
import
java.sql.Connection
;
import
java.sql.DriverManager
;
import
java.text.SimpleDateFormat
;
import
java.util.Calendar
;
import
java.util.Date
;
/**
* 公积金系统服务类
*/
@RestController
@RequestMapping
(
value
=
"InternalLogic"
)
public
class
ProvidentFundServicesController
{
/**
* 公积金系统服务接口内置机调前置机中间接口
*
* @param
* @param
*/
@ResponseBody
@PostMapping
(
"ProvidentFundServices"
)
public
static
String
ProvidentFundServices
()
{
String
token
=
null
;
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"startTime"
,
currenttime
(
0
));
jsonObject
.
put
(
"endTime"
,
currenttime
(
24
));
jsonObject
.
put
(
"app_id"
,
"xxxxx"
);
jsonObject
.
put
(
"app_secret"
,
"xxxxx"
);
String
str
=
jsonObject
.
toString
();
StringBuffer
sb
=
new
StringBuffer
();
HttpURLConnection
conn
=
null
;
OutputStream
out
=
null
;
try
{
// 创建url 资源
URL
url
=
new
URL
(
"http://127.0.0.1:8080/FrontEndProcessor/FrontEndProcessor/ProvidentFundServices"
);
//调用前置机将业务机封装的业务json数据发给前置机,让前置机去请求第三方的公积金系统服务接口
// 创建http 连接
conn
=
(
HttpURLConnection
)
url
.
openConnection
();
// 设置允许输出
conn
.
setDoOutput
(
true
);
// 设置允许输入
conn
.
setDoInput
(
true
);
// 设置不使用缓存
conn
.
setUseCaches
(
false
);
// 设置传递方式
conn
.
setRequestMethod
(
"POST"
);
// 设置维持长连接
conn
.
setRequestProperty
(
"Connection"
,
"Keep-Alive"
);
// 设置文件类型:
conn
.
setRequestProperty
(
"Content-Type"
,
"application/json"
);
// 设置文件字符集:
conn
.
setRequestProperty
(
"Charset"
,
"UTF-8"
);
// 转换为字节数组
byte
[]
data
=
(
str
).
getBytes
(
"UTF-8"
);
// 设置文件长度
conn
.
setRequestProperty
(
"Content-Length"
,
String
.
valueOf
(
data
.
length
));
// 开始连接请求
conn
.
connect
();
//创建写入流,写入请求的字符串
out
=
new
DataOutputStream
(
conn
.
getOutputStream
());
out
.
write
(
data
);
// 请求返回的状态
if
(
HttpURLConnection
.
HTTP_OK
==
conn
.
getResponseCode
())
{
// 请求返回的数据
InputStream
is
=
conn
.
getInputStream
();
String
readLine
=
new
String
();
BufferedReader
responseReader
=
new
BufferedReader
(
new
InputStreamReader
(
is
,
"UTF-8"
));
while
((
readLine
=
responseReader
.
readLine
())
!=
null
)
{
sb
.
append
(
readLine
);
}
responseReader
.
close
();
System
.
out
.
println
(
sb
.
toString
());
return
sb
.
toString
();
}
else
{
System
.
out
.
println
(
"请求失败!!!"
);
}
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
finally
{
if
(
out
!=
null
)
{
try
{
out
.
flush
();
out
.
close
();
}
catch
(
IOException
e
)
{
}
}
if
(
conn
!=
null
)
{
conn
.
disconnect
();
}
}
return
null
;
}
/**
* 获取当天零点零分零秒的时间戳和当天24点的时间戳
*
* @return
*/
@ResponseBody
@PostMapping
(
"currentime"
)
public
static
String
currenttime
(
int
type
)
{
String
time
=
null
;
if
(
type
==
0
)
{
// 获取当天零点零分零秒的时间戳
Calendar
curentDay
=
Calendar
.
getInstance
();
curentDay
.
setTime
(
new
Date
());
curentDay
.
set
(
Calendar
.
HOUR_OF_DAY
,
0
);
curentDay
.
set
(
Calendar
.
MINUTE
,
0
);
curentDay
.
set
(
Calendar
.
SECOND
,
0
);
SimpleDateFormat
df2
=
new
SimpleDateFormat
(
"yyyy-MM-dd HH:mm:ss"
);
time
=
df2
.
format
(
curentDay
.
getTime
().
getTime
());
System
.
out
.
println
(
time
);
}
else
if
(
type
==
24
)
{
// 获取当天24点零分零秒的时间戳,即第二天零点时间
Calendar
curentDay
=
Calendar
.
getInstance
();
curentDay
.
setTime
(
new
Date
());
curentDay
.
set
(
Calendar
.
HOUR_OF_DAY
,
24
);
curentDay
.
set
(
Calendar
.
MINUTE
,
0
);
curentDay
.
set
(
Calendar
.
SECOND
,
0
);
SimpleDateFormat
df2
=
new
SimpleDateFormat
(
"yyyy-MM-dd HH:mm:ss"
);
time
=
df2
.
format
(
curentDay
.
getTime
().
getTime
());
System
.
out
.
println
(
time
);
}
return
time
;
}
/**
* 调用公积金系统服务接口方法,请求前置机,让前置机请求市监接口,
*拿到市监返回的开户信息json数据,经过前置机zip解压返回给本内置机处理
* @return
*/
@ResponseBody
@PostMapping
(
"gjjxtfwjk"
)
public
static
void
gjjxtfwjk
()
throws
Exception
{
//1.调用公积金系统服务接口方法,请求前置机,让前置机请求市监接口,拿到市监返回的开户信息json数据,经过前置机zip解压返回给本内置机处理
String
jsoninfom
=
ProvidentFundServices
();
System
.
out
.
println
(
jsoninfom
);
//2.内置机处理返回的业务数据,调用oracle存储过程
JSONObject
jsonObj
=
JSONObject
.
parseObject
(
jsoninfom
);
String
str
=
jsonObj
.
get
(
"data"
).
toString
();
String
str1
=
str
.
replace
(
"["
,
""
);
String
str2
=
str1
.
replace
(
"]"
,
""
);
UnitAccountOpeningInformation
uniInfom
=
JSONObject
.
parseObject
(
str2
,
UnitAccountOpeningInformation
.
class
);
System
.
out
.
println
(
uniInfom
);
//加载数据库驱动
Class
.
forName
(
"oracle.jdbc.driver.OracleDriver"
);
//得到Connection连接
Connection
connection
=
DriverManager
.
getConnection
(
"jdbc:oracle:thin:@192.168.101.194:1521:zfgjj"
,
"HG2020"
,
"HG2020"
);
//得到预编译的Statement对象
CallableStatement
pstm
=
connection
.
prepareCall
(
"{call JGJ_KSYW_DWKH.DWKH_SL(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}"
);
//给参数赋值
// pstm.getString(1);
pstm
.
registerOutParameter
(
1
,
oracle
.
jdbc
.
OracleTypes
.
VARCHAR
);
pstm
.
setString
(
2
,
uniInfom
.
getBusId
());
pstm
.
setString
(
3
,
uniInfom
.
getUscc
());
pstm
.
setString
(
4
,
uniInfom
.
getEntName
());
pstm
.
setString
(
5
,
uniInfom
.
getDom
());
pstm
.
setDate
(
6
,
new
java
.
sql
.
Date
(
uniInfom
.
getEstDate
().
getTime
()));
pstm
.
setString
(
7
,
uniInfom
.
getLerep
());
pstm
.
setString
(
8
,
uniInfom
.
getCerType
());
pstm
.
setString
(
9
,
uniInfom
.
getCerNo
());
pstm
.
setString
(
10
,
uniInfom
.
getOperatorName
());
pstm
.
setString
(
11
,
uniInfom
.
getOperatorCerNo
());
pstm
.
setString
(
12
,
uniInfom
.
getOperatorPhone
());
pstm
.
setString
(
13
,
uniInfom
.
getOplocdistrict
());
pstm
.
setString
(
14
,
uniInfom
.
getUnitNature
());
pstm
.
setString
(
15
,
uniInfom
.
getEconomicType
());
pstm
.
setString
(
16
,
uniInfom
.
getIndustryphy
());
pstm
.
setString
(
17
,
uniInfom
.
getUnitPayDay
());
pstm
.
setString
(
18
,
uniInfom
.
getUnitDepPro
());
pstm
.
setString
(
19
,
uniInfom
.
getPersonalDepPro
());
pstm
.
setString
(
20
,
""
);
pstm
.
setString
(
21
,
""
);
pstm
.
registerOutParameter
(
22
,
oracle
.
jdbc
.
OracleTypes
.
VARCHAR
);
pstm
.
registerOutParameter
(
23
,
oracle
.
jdbc
.
OracleTypes
.
VARCHAR
);
pstm
.
registerOutParameter
(
24
,
oracle
.
jdbc
.
OracleTypes
.
VARCHAR
);
//执行数据库查询操作
pstm
.
execute
();
//输出结果[第二个参数]
System
.
out
.
println
(
pstm
.
getString
(
1
));
System
.
out
.
println
(
pstm
.
getString
(
22
));
System
.
out
.
println
(
pstm
.
getString
(
23
));
System
.
out
.
println
(
pstm
.
getString
(
24
));
//释放资源
pstm
.
close
();
connection
.
close
();
}
/**
* 调用oracle存储过程
* @param jsoninfom
* @throws Exception
*/
public
static
void
oracleprocess
(
String
jsoninfom
)
throws
Exception
{
JSONObject
jsonObj
=
JSONObject
.
parseObject
(
jsoninfom
);
String
str
=
jsonObj
.
get
(
"data"
).
toString
();
String
str1
=
str
.
replace
(
"["
,
""
);
String
str2
=
str1
.
replace
(
"]"
,
""
);
UnitAccountOpeningInformation
uniInfom
=
JSONObject
.
parseObject
(
str2
,
UnitAccountOpeningInformation
.
class
);
System
.
out
.
println
(
uniInfom
);
//加载数据库驱动
Class
.
forName
(
"oracle.jdbc.driver.OracleDriver"
);
//得到Connection连接
Connection
connection
=
DriverManager
.
getConnection
(
"jdbc:oracle:thin:@192.168.101.194:1521:zfgjj"
,
"HG2020"
,
"HG2020"
);
//得到预编译的Statement对象
CallableStatement
pstm
=
connection
.
prepareCall
(
"{call JGJ_KSYW_DWKH.DWKH_SL(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}"
);
//给参数赋值
// pstm.getString(1);
pstm
.
registerOutParameter
(
1
,
oracle
.
jdbc
.
OracleTypes
.
VARCHAR
);
pstm
.
setString
(
2
,
uniInfom
.
getBusId
());
pstm
.
setString
(
3
,
uniInfom
.
getUscc
());
pstm
.
setString
(
4
,
uniInfom
.
getEntName
());
pstm
.
setString
(
5
,
uniInfom
.
getDom
());
pstm
.
setDate
(
6
,
new
java
.
sql
.
Date
(
uniInfom
.
getEstDate
().
getTime
()));
pstm
.
setString
(
7
,
uniInfom
.
getLerep
());
pstm
.
setString
(
8
,
uniInfom
.
getCerType
());
pstm
.
setString
(
9
,
uniInfom
.
getCerNo
());
pstm
.
setString
(
10
,
uniInfom
.
getOperatorName
());
pstm
.
setString
(
11
,
uniInfom
.
getOperatorCerNo
());
pstm
.
setString
(
12
,
uniInfom
.
getOperatorPhone
());
pstm
.
setString
(
13
,
uniInfom
.
getOplocdistrict
());
pstm
.
setString
(
14
,
uniInfom
.
getUnitNature
());
pstm
.
setString
(
15
,
uniInfom
.
getEconomicType
());
pstm
.
setString
(
16
,
uniInfom
.
getIndustryphy
());
pstm
.
setString
(
17
,
uniInfom
.
getUnitPayDay
());
pstm
.
setString
(
18
,
uniInfom
.
getUnitDepPro
());
pstm
.
setString
(
19
,
uniInfom
.
getPersonalDepPro
());
pstm
.
setString
(
20
,
""
);
pstm
.
setString
(
21
,
""
);
pstm
.
registerOutParameter
(
22
,
oracle
.
jdbc
.
OracleTypes
.
VARCHAR
);
pstm
.
registerOutParameter
(
23
,
oracle
.
jdbc
.
OracleTypes
.
VARCHAR
);
pstm
.
registerOutParameter
(
24
,
oracle
.
jdbc
.
OracleTypes
.
VARCHAR
);
//执行数据库查询操作
pstm
.
execute
();
//输出结果[第二个参数]
System
.
out
.
println
(
pstm
.
getString
(
1
));
System
.
out
.
println
(
pstm
.
getString
(
22
));
System
.
out
.
println
(
pstm
.
getString
(
23
));
System
.
out
.
println
(
pstm
.
getString
(
24
));
//释放资源
pstm
.
close
();
connection
.
close
();
}
}
src/main/java/net/cdkj/gjj/adapter/domain/UnitAccountOpeningInformation.java
0 → 100644
View file @
ed526442
package
net.cdkj.gjj.adapter.domain
;
import
com.fasterxml.jackson.annotation.JsonInclude
;
import
java.util.Date
;
/**
* 单位开户信息对象
*/
@JsonInclude
(
JsonInclude
.
Include
.
NON_NULL
)
public
class
UnitAccountOpeningInformation
{
private
String
ywbh
;
private
String
busId
;
private
String
uscc
;
private
String
entName
;
private
String
dom
;
private
Date
estDate
;
private
String
lerep
;
private
String
cerType
;
private
String
cerNo
;
private
String
operatorName
;
private
String
operatorCerNo
;
private
String
operatorPhone
;
private
String
oplocdistrict
;
private
String
unitNature
;
private
String
economicType
;
private
String
industryphy
;
private
String
unitPayDay
;
private
String
unitDepPro
;
private
String
personalDepPro
;
private
String
zxdqbm
;
private
String
lcls
;
private
String
dwzh
;
private
String
errcode
;
private
String
errmsg
;
public
String
getBusId
()
{
return
busId
;
}
public
void
setBusId
(
String
busId
)
{
this
.
busId
=
busId
;
}
public
String
getUscc
()
{
return
uscc
;
}
public
void
setUscc
(
String
uscc
)
{
this
.
uscc
=
uscc
;
}
public
String
getEntName
()
{
return
entName
;
}
public
void
setEntName
(
String
entName
)
{
this
.
entName
=
entName
;
}
public
String
getDom
()
{
return
dom
;
}
public
void
setDom
(
String
dom
)
{
this
.
dom
=
dom
;
}
public
Date
getEstDate
()
{
return
estDate
;
}
public
void
setEstDate
(
Date
estDate
)
{
this
.
estDate
=
estDate
;
}
public
String
getLerep
()
{
return
lerep
;
}
public
void
setLerep
(
String
lerep
)
{
this
.
lerep
=
lerep
;
}
public
String
getCerType
()
{
return
cerType
;
}
public
void
setCerType
(
String
cerType
)
{
this
.
cerType
=
cerType
;
}
public
String
getCerNo
()
{
return
cerNo
;
}
public
void
setCerNo
(
String
cerNo
)
{
this
.
cerNo
=
cerNo
;
}
public
String
getOperatorName
()
{
return
operatorName
;
}
public
void
setOperatorName
(
String
operatorName
)
{
this
.
operatorName
=
operatorName
;
}
public
String
getOperatorCerNo
()
{
return
operatorCerNo
;
}
public
void
setOperatorCerNo
(
String
operatorCerNo
)
{
this
.
operatorCerNo
=
operatorCerNo
;
}
public
String
getOperatorPhone
()
{
return
operatorPhone
;
}
public
void
setOperatorPhone
(
String
operatorPhone
)
{
this
.
operatorPhone
=
operatorPhone
;
}
public
String
getOplocdistrict
()
{
return
oplocdistrict
;
}
public
void
setOplocdistrict
(
String
oplocdistrict
)
{
this
.
oplocdistrict
=
oplocdistrict
;
}
public
String
getUnitNature
()
{
return
unitNature
;
}
public
void
setUnitNature
(
String
unitNature
)
{
this
.
unitNature
=
unitNature
;
}
public
String
getEconomicType
()
{
return
economicType
;
}
public
void
setEconomicType
(
String
economicType
)
{
this
.
economicType
=
economicType
;
}
public
String
getIndustryphy
()
{
return
industryphy
;
}
public
void
setIndustryphy
(
String
industryphy
)
{
this
.
industryphy
=
industryphy
;
}
public
String
getUnitPayDay
()
{
return
unitPayDay
;
}
public
void
setUnitPayDay
(
String
unitPayDay
)
{
this
.
unitPayDay
=
unitPayDay
;
}
public
String
getUnitDepPro
()
{
return
unitDepPro
;
}
public
void
setUnitDepPro
(
String
unitDepPro
)
{
this
.
unitDepPro
=
unitDepPro
;
}
public
String
getPersonalDepPro
()
{
return
personalDepPro
;
}
public
String
getYwbh
()
{
return
ywbh
;
}
public
void
setYwbh
(
String
ywbh
)
{
this
.
ywbh
=
ywbh
;
}
public
String
getZxdqbm
()
{
return
zxdqbm
;
}
public
void
setZxdqbm
(
String
zxdqbm
)
{
this
.
zxdqbm
=
zxdqbm
;
}
public
String
getLcls
()
{
return
lcls
;
}
public
void
setLcls
(
String
lcls
)
{
this
.
lcls
=
lcls
;
}
public
String
getDwzh
()
{
return
dwzh
;
}
public
void
setDwzh
(
String
dwzh
)
{
this
.
dwzh
=
dwzh
;
}
public
String
getErrcode
()
{
return
errcode
;
}
public
void
setErrcode
(
String
errcode
)
{
this
.
errcode
=
errcode
;
}
public
String
getErrmsg
()
{
return
errmsg
;
}
public
void
setErrmsg
(
String
errmsg
)
{
this
.
errmsg
=
errmsg
;
}
public
void
setPersonalDepPro
(
String
personalDepPro
)
{
this
.
personalDepPro
=
personalDepPro
;
}
@Override
public
String
toString
()
{
return
"UnitAccountOpeningInformation{"
+
"ywbh='"
+
ywbh
+
'\''
+
", busId='"
+
busId
+
'\''
+
", uscc='"
+
uscc
+
'\''
+
", entName='"
+
entName
+
'\''
+
", dom='"
+
dom
+
'\''
+
", estDate="
+
estDate
+
", lerep='"
+
lerep
+
'\''
+
", cerType='"
+
cerType
+
'\''
+
", cerNo='"
+
cerNo
+
'\''
+
", operatorName='"
+
operatorName
+
'\''
+
", operatorCerNo='"
+
operatorCerNo
+
'\''
+
", operatorPhone='"
+
operatorPhone
+
'\''
+
", oplocdistrict='"
+
oplocdistrict
+
'\''
+
", unitNature='"
+
unitNature
+
'\''
+
", economicType='"
+
economicType
+
'\''
+
", industryphy='"
+
industryphy
+
'\''
+
", unitPayDay='"
+
unitPayDay
+
'\''
+
", unitDepPro='"
+
unitDepPro
+
'\''
+
", personalDepPro='"
+
personalDepPro
+
'\''
+
", zxdqbm='"
+
zxdqbm
+
'\''
+
", lcls='"
+
lcls
+
'\''
+
", dwzh='"
+
dwzh
+
'\''
+
", errcode='"
+
errcode
+
'\''
+
", errmsg='"
+
errmsg
+
'\''
+
'}'
;
}
}
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