Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-support-rlwx
Project
Project
Details
Activity
Releases
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
rl
hls-support-rlwx
Commits
c928c017
Commit
c928c017
authored
Aug 10, 2021
by
5359
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
正式环境参数修改
parent
4f64cb20
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
153 additions
and
9 deletions
+153
-9
pom.xml
core/pom.xml
+1
-0
FndAtmAttachmentMapper.xml
...urces/app/zhongDengWang/mapper/FndAtmAttachmentMapper.xml
+55
-0
FndAtmAttachmentMultiMapper.xml
.../app/zhongDengWang/mapper/FndAtmAttachmentMultiMapper.xml
+14
-0
FndZhongDengLinesMapper.xml
...rces/app/zhongDengWang/mapper/FndZhongDengLinesMapper.xml
+31
-0
HlsWsRequestsMapper.xml
...esources/app/zhongDengWang/mapper/HlsWsRequestsMapper.xml
+24
-0
ZdwLoginTokenInterfaceMapper.xml
...app/zhongDengWang/mapper/ZdwLoginTokenInterfaceMapper.xml
+13
-0
config.properties
core/src/main/resources/profiles/dev/config.properties
+15
-9
No files found.
core/pom.xml
View file @
c928c017
...
...
@@ -466,6 +466,7 @@
<exclude>
WEB-INF/lib/spring-webmvc-4.3.11.RELEASE.jar
</exclude>
<exclude>
WEB-INF/lib/spring-websocket-4.3.11.RELEASE.jar
</exclude>
<exclude>
WEB-INF/lib/bcprov-jdk15on-1.47.jar
</exclude>
<exclude>
WEB-INF/lib/bcprov-jdk15-1.45.jar
</exclude>
</excludes>
</overlay>
</overlays>
...
...
core/src/main/resources/app/zhongDengWang/mapper/FndAtmAttachmentMapper.xml
0 → 100644
View file @
c928c017
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.hand.app.zhongDengWang.mapper.FndAtmAttachmentMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.hand.app.zhongDengWang.dto.FndAtmAttachmentDto"
>
<id
column=
"ATTACHMENT_ID"
jdbcType=
"DECIMAL"
property=
"attachmentId"
/>
<result
column=
"SOURCE_TYPE_CODE"
jdbcType=
"VARCHAR"
property=
"sourceTypeCode"
/>
<result
column=
"SOURCE_PK_VALUE"
jdbcType=
"VARCHAR"
property=
"sourcePkValue"
/>
<result
column=
"FILE_TYPE_CODE"
jdbcType=
"VARCHAR"
property=
"fileTypeCode"
/>
<result
column=
"MIME_TYPE"
jdbcType=
"VARCHAR"
property=
"mimeType"
/>
<result
column=
"FILE_NAME"
jdbcType=
"VARCHAR"
property=
"fileName"
/>
<result
column=
"FILE_SIZE"
jdbcType=
"DECIMAL"
property=
"fileSize"
/>
<result
column=
"FILE_PATH"
jdbcType=
"VARCHAR"
property=
"filePath"
/>
<result
column=
"CREATION_DATE"
jdbcType=
"DATE"
property=
"creationDate"
/>
<result
column=
"CREATED_BY"
jdbcType=
"DECIMAL"
property=
"createdBy"
/>
<result
column=
"LAST_UPDATE_DATE"
jdbcType=
"DATE"
property=
"lastUpdateDate"
/>
<result
column=
"LAST_UPDATED_BY"
jdbcType=
"DECIMAL"
property=
"lastUpdatedBy"
/>
</resultMap>
<select
id=
"selectAttachmentByTbNameAndTemCode"
resultType=
"com.hand.app.zhongDengWang.dto.FndAtmAttachmentDto"
>
SELECT
faa.file_name fileName,
faa.file_path filePath,
faa.file_type_code fileTypeCode
FROM
FND_ATM_ATTACHMENT_MULTI M
LEFT JOIN FND_ATM_ATTACHMENT faa ON M .ATTACHMENT_ID = faa.ATTACHMENT_ID
WHERE
TABLE_NAME = #{tableName}
AND TABLE_PK_VALUE =
(
SELECT
TEMPLET_ID
FROM
HLS_DOC_FILE_TEMPLET
WHERE
TEMPLET_CODE = #{templetCode}
)
</select>
<select
id=
"selectByCodeAndPkValue"
resultType=
"com.hand.app.zhongDengWang.dto.FndAtmAttachmentDto"
>
SELECT
ATTACHMENT_ID attachmentId,
FILE_TYPE_CODE fileTypeCode,
MIME_TYPE mimeType,
FILE_NAME fileName,
FILE_SIZE fileSize,
FILE_PATH filePath,
SOURCE_TYPE_CODE sourceTypeCode,
SOURCE_PK_VALUE sourcePkValue
FROM
FND_ATM_ATTACHMENT
WHERE
SOURCE_TYPE_CODE = #{sourceTypeCode,jdbcType=VARCHAR}
AND SOURCE_PK_VALUE = #{sourcePkValue,jdbcType=VARCHAR}
AND ROWNUM = 1
</select>
</mapper>
\ No newline at end of file
core/src/main/resources/app/zhongDengWang/mapper/FndAtmAttachmentMultiMapper.xml
0 → 100644
View file @
c928c017
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.hand.app.zhongDengWang.mapper.FndAtmAttachmentMultiMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.hand.app.zhongDengWang.dto.FndAtmAttachmentMultiDto"
>
<id
column=
"RECORD_ID"
jdbcType=
"DECIMAL"
property=
"recordId"
/>
<result
column=
"TABLE_NAME"
jdbcType=
"VARCHAR"
property=
"tableName"
/>
<result
column=
"TABLE_PK_VALUE"
jdbcType=
"DECIMAL"
property=
"tablePkValue"
/>
<result
column=
"ATTACHMENT_ID"
jdbcType=
"DECIMAL"
property=
"attachmentId"
/>
<result
column=
"CREATION_DATE"
jdbcType=
"DATE"
property=
"creationDate"
/>
<result
column=
"CREATED_BY"
jdbcType=
"DECIMAL"
property=
"createdBy"
/>
<result
column=
"LAST_UPDATE_DATE"
jdbcType=
"DATE"
property=
"lastUpdateDate"
/>
<result
column=
"LAST_UPDATED_BY"
jdbcType=
"DECIMAL"
property=
"lastUpdatedBy"
/>
</resultMap>
</mapper>
\ No newline at end of file
core/src/main/resources/app/zhongDengWang/mapper/FndZhongDengLinesMapper.xml
0 → 100644
View file @
c928c017
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.hand.app.zhongDengWang.mapper.FndZhongDengLinesMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.hand.app.zhongDengWang.dto.FndZhongDengLines"
>
<result
column=
"LINE_ID"
property=
"lineId"
jdbcType=
"DECIMAL"
/>
<result
column=
"HEAD_ID"
property=
"headId"
jdbcType=
"DECIMAL"
/>
<result
column=
"CONTRACT_NUMBER"
property=
"contractNumber"
jdbcType=
"VARCHAR"
/>
<result
column=
"MAINCONTRACTNUMBER"
property=
"maincontractnumber"
jdbcType=
"VARCHAR"
/>
<result
column=
"MAINCONTRACTCURRENCY"
property=
"maincontractcurrency"
jdbcType=
"VARCHAR"
/>
<result
column=
"MAINCONTRACTSUM"
property=
"maincontractsum"
jdbcType=
"DECIMAL"
/>
<result
column=
"BEGINDATE"
property=
"begindate"
jdbcType=
"DATE"
/>
<result
column=
"ENDDATE"
property=
"enddate"
jdbcType=
"DATE"
/>
<result
column=
"IDENTIFICATIONCODE"
property=
"identificationcode"
jdbcType=
"VARCHAR"
/>
<result
column=
"LEASEMODE"
property=
"leasemode"
jdbcType=
"VARCHAR"
/>
<result
column=
"COLLATERALDESCRIBE"
property=
"collateraldescribe"
jdbcType=
"VARCHAR"
/>
<result
column=
"ATTACHMENTNAME"
property=
"attachmentname"
jdbcType=
"VARCHAR"
/>
<result
column=
"ATTACHMENT_XML_ID"
property=
"attachmentXmlId"
jdbcType=
"DECIMAL"
/>
<result
column=
"UP_STATUS"
property=
"upStatus"
jdbcType=
"VARCHAR"
/>
<result
column=
"RETURN_MSG"
property=
"returnMsg"
jdbcType=
"VARCHAR"
/>
<result
column=
"UP_DATE"
property=
"upDate"
jdbcType=
"DATE"
/>
<result
column=
"REGISTER_NUMBER"
property=
"registerNumber"
jdbcType=
"VARCHAR"
/>
<result
column=
"AUTHORIZATION_CODE"
property=
"authorizationCode"
jdbcType=
"VARCHAR"
/>
<result
column=
"DATA_CLASS"
property=
"dataClass"
jdbcType=
"VARCHAR"
/>
<result
column=
"VERSION"
property=
"version"
jdbcType=
"DECIMAL"
/>
<result
column=
"UP_STAGE"
property=
"upStage"
jdbcType=
"VARCHAR"
/>
<result
column=
"TIMELIMIT"
property=
"timelimit"
jdbcType=
"DECIMAL"
/>
</resultMap>
</mapper>
\ No newline at end of file
core/src/main/resources/app/zhongDengWang/mapper/HlsWsRequestsMapper.xml
0 → 100644
View file @
c928c017
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.hand.app.zhongDengWang.mapper.HlsWsRequestsMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.hand.app.zhongDengWang.dto.HlsWsRequests"
>
<result
column=
"REQUEST_ID"
property=
"requestId"
jdbcType=
"DECIMAL"
/>
<result
column=
"REQUEST_DATE"
property=
"requestDate"
jdbcType=
"DATE"
/>
<result
column=
"REQUEST_WSDL_URL"
property=
"requestWsdlUrl"
jdbcType=
"VARCHAR"
/>
<result
column=
"FUNCTION_NAME"
property=
"functionName"
jdbcType=
"VARCHAR"
/>
<result
column=
"STATUS_CODE"
property=
"statusCode"
jdbcType=
"VARCHAR"
/>
<result
column=
"STATUS_DATE"
property=
"statusDate"
jdbcType=
"DATE"
/>
<result
column=
"RETURN_STATUS"
property=
"returnStatus"
jdbcType=
"VARCHAR"
/>
<result
column=
"RESPONSED_DATE"
property=
"responsedDate"
jdbcType=
"DATE"
/>
<result
column=
"REQUEST_XML"
property=
"requestXml"
jdbcType=
"VARCHAR"
/>
<result
column=
"RESPONSE_XML"
property=
"responseXml"
jdbcType=
"VARCHAR"
/>
<result
column=
"PK_VALUE"
property=
"pkValue"
jdbcType=
"DECIMAL"
/>
<result
column=
"USER_ID"
property=
"userId"
jdbcType=
"DECIMAL"
/>
<result
column=
"PARAMETER_TYPE"
property=
"parameterType"
jdbcType=
"VARCHAR"
/>
<result
column=
"REQUEST_JSON"
property=
"requestJson"
jdbcType=
"CLOB"
/>
<result
column=
"RESPONSE_JSON"
property=
"responseJson"
jdbcType=
"CLOB"
/>
<result
column=
"REQUEST_CLOB"
property=
"requestClob"
jdbcType=
"CLOB"
/>
<result
column=
"RESPONSE_CLOB"
property=
"responseClob"
jdbcType=
"CLOB"
/>
</resultMap>
</mapper>
\ No newline at end of file
core/src/main/resources/app/zhongDengWang/mapper/ZdwLoginTokenInterfaceMapper.xml
0 → 100644
View file @
c928c017
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.hand.app.zhongDengWang.mapper.ZdwLoginTokenInterfaceMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.hand.app.zhongDengWang.dto.ZdwLoginTokenInterface"
>
<result
column=
"token"
jdbcType=
"VARCHAR"
property=
"token"
/>
<result
column=
"enable_flag"
jdbcType=
"DECIMAL"
property=
"enableFlag"
/>
</resultMap>
<update
id=
"updateToken"
parameterType=
"java.lang.String"
>
update ZDW_LOGIN_TOKEN_INTERFACE t set t.token=#{token},t.enable_flag='Y'
</update>
</mapper>
\ No newline at end of file
core/src/main/resources/profiles/dev/config.properties
View file @
c928c017
...
...
@@ -111,27 +111,27 @@ thread.taskSize = 5
#esignHclc
tsign.project.id
=
1000029
tsign.project.secret
=
2e66a86bbc6fa9000d4a5f272cbc70e1
tsign.project.secret
=
a4859d3bea99b936826994fe2ac9ae04
#e签宝地址
tsign.api.url
=
http://
tsign-test.hitachics.com
tsign.api.url
=
http://
139.196.20.44:8035
#用户认证地址
tsign.face.api.url
=
https://
sml
openapi.esign.cn
tsign.face.api.url
=
https://openapi.esign.cn
#用户认证用户
tsign.face.api.appId
=
4438798562
tsign.face.api.appId
=
5111596700
#用户认证密码
tsign.face.api.secret
=
4024c2b5e503a84da6d126fdc6f0da81
tsign.face.api.secret
=
f112f3acd3ed05263ba4a3fad6e901cd
#认证结果通知地址
tsign.api.notifyUrl
=
http://
101.133.225.167
/core/api/public/listen/auth/result
tsign.api.notifyUrl
=
http://
lease.hitachics.com
/core/api/public/listen/auth/result
#签署结果通知地址
tsign.api.listenSignUrl
=
http://
101.133.225.167
/core/api/public/listen/sign/flow
tsign.api.listenSignUrl
=
http://
lease.hitachics.com
/core/api/public/listen/sign/flow
#签署完成跳转地址
tsign.api.signRedirectUrl
=
http://
sign
.hitachics.com/www/#/ElectronicContract
tsign.api.signRedirectUrl
=
http://
lease
.hitachics.com/www/#/ElectronicContract
#微信公众号apiKey
wx.apiKey
=
handexinxi
#微信公众号接口地址
wx.apiHttpUrl
=
https://wxgzh.hitachics.com/hcs-public-server/internal/third/
#微信服务器图片保存中台路径
wx.image.path
=
D:
\\
app
_dev
\\
apache-tomcat-app
\\
app_file
wx.image.path
=
D:
\\
app
\\
apache-tomcat-app
\\
app_file
...
...
@@ -139,3 +139,9 @@ face.check.enable=false
#金格电子合同配置文件地址
electronic.signature.path
=
/Volumes/work/idea/APIconfig
zdw.login.clientKey
=
04593D186F5AB68871891C235A35ED90E6D5E8DC33414C89E05C29EBF5D19C3919F0D1956568619BA138AC724F4E5DC730266C8186F610D8CC85BFC0748F899695
zdw.login.userName
=
hclczhongdengwang1
zdw.login.password
=
zhongdengwang12345
zdw.login.authCode
=
7b7-f08f197fe2e5
\ 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