Commit c928c017 authored by 5359's avatar 5359

正式环境参数修改

parent 4f64cb20
......@@ -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>
......
<?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
<?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
<?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
<?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
<?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
......@@ -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://smlopenapi.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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment