Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-backend
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AutogeneralShanghai
yd-backend
Commits
c5d34da6
Commit
c5d34da6
authored
Oct 27, 2021
by
jianan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户告知书2
parent
85542eee
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
301 additions
and
15 deletions
+301
-15
yd-api/src/main/java/com/yd/api/practitioner/PractitionerController.java
+13
-6
yd-api/src/main/java/com/yd/api/practitioner/service/PractitionerService.java
+5
-3
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerHiringContractServiceImpl.java
+3
-0
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerServiceImpl.java
+199
-4
yd-api/src/main/java/com/yd/api/practitioner/vo/informed/QueryInformedSheetListRequestVO.java
+12
-0
yd-api/src/main/java/com/yd/api/practitioner/vo/informed/QueryInformedSheetListResponseVO.java
+13
-0
yd-api/src/main/java/com/yd/api/practitioner/vo/informed/SignInformedSheetRequestVO.java
+9
-0
yd-api/src/main/java/com/yd/dal/entity/customer/AgPoInformed.java
+14
-0
yd-api/src/main/java/com/yd/dal/mapper/customer/AgPoInformedMapper.java
+5
-0
yd-api/src/main/resources/mapper/customer/AgPoInformedMapper.xml
+22
-0
yd-api/src/main/resources/pdfconfiguration.properties
+6
-2
No files found.
yd-api/src/main/java/com/yd/api/practitioner/PractitionerController.java
View file @
c5d34da6
...
@@ -3,9 +3,7 @@ package com.yd.api.practitioner;
...
@@ -3,9 +3,7 @@ package com.yd.api.practitioner;
import
com.yd.api.practitioner.service.PractitionerBasicInfoService
;
import
com.yd.api.practitioner.service.PractitionerBasicInfoService
;
import
com.yd.api.practitioner.service.PractitionerService
;
import
com.yd.api.practitioner.service.PractitionerService
;
import
com.yd.api.practitioner.service.ScheduleTrackService
;
import
com.yd.api.practitioner.service.ScheduleTrackService
;
import
com.yd.api.practitioner.vo.informed.QueryInformedSheetByIdResponseVO
;
import
com.yd.api.practitioner.vo.informed.*
;
import
com.yd.api.practitioner.vo.informed.SaveInformedSheetRequestVO
;
import
com.yd.api.practitioner.vo.informed.UpdateInformedSheetByIdRequestVO
;
import
com.yd.api.practitioner.vo.login.CanSeeSalaryListResponseVO
;
import
com.yd.api.practitioner.vo.login.CanSeeSalaryListResponseVO
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginRequestVO
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginRequestVO
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginResponseVO
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginResponseVO
;
...
@@ -696,10 +694,19 @@ public class PractitionerController {
...
@@ -696,10 +694,19 @@ public class PractitionerController {
return
result
;
return
result
;
}
}
@RequestMapping
(
"/
updateInformedSheetById
"
)
@RequestMapping
(
"/
signInformedSheet
"
)
public
Object
updateInformedSheetById
(
@RequestBody
UpdateInformedSheetById
RequestVO
requestVO
)
{
public
Object
signInformedSheet
(
@RequestBody
SignInformedSheet
RequestVO
requestVO
)
{
JsonResult
result
=
new
JsonResult
();
JsonResult
result
=
new
JsonResult
();
CommonResultIDResponseVO
responseVO
=
practitionerService
.
updateInformedSheetById
(
requestVO
);
CommonResultIDResponseVO
responseVO
=
practitionerService
.
signInformedSheet
(
requestVO
);
result
.
addResult
(
responseVO
);
result
.
setData
(
responseVO
);
return
result
;
}
@RequestMapping
(
"/queryInformedSheetList"
)
public
Object
queryInformedSheetList
(
@RequestBody
QueryInformedSheetListRequestVO
requestVO
)
{
JsonResult
result
=
new
JsonResult
();
QueryInformedSheetListResponseVO
responseVO
=
practitionerService
.
queryInformedSheetList
(
requestVO
);
result
.
addResult
(
responseVO
);
result
.
addResult
(
responseVO
);
result
.
setData
(
responseVO
);
result
.
setData
(
responseVO
);
return
result
;
return
result
;
...
...
yd-api/src/main/java/com/yd/api/practitioner/service/PractitionerService.java
View file @
c5d34da6
package
com
.
yd
.
api
.
practitioner
.
service
;
package
com
.
yd
.
api
.
practitioner
.
service
;
import
com.yd.api.practitioner.vo.informed.QueryInformedSheetByIdResponseVO
;
import
com.yd.api.practitioner.vo.informed.*
;
import
com.yd.api.practitioner.vo.informed.SaveInformedSheetRequestVO
;
import
com.yd.api.practitioner.vo.informed.UpdateInformedSheetByIdRequestVO
;
import
com.yd.api.practitioner.vo.login.CanSeeSalaryListResponseVO
;
import
com.yd.api.practitioner.vo.login.CanSeeSalaryListResponseVO
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginRequestVO
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginRequestVO
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginResponseVO
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginResponseVO
;
...
@@ -256,4 +254,8 @@ public interface PractitionerService {
...
@@ -256,4 +254,8 @@ public interface PractitionerService {
QueryInformedSheetByIdResponseVO
queryInformedSheetById
(
IDRequestVO
requestVO
);
QueryInformedSheetByIdResponseVO
queryInformedSheetById
(
IDRequestVO
requestVO
);
CommonResultIDResponseVO
updateInformedSheetById
(
UpdateInformedSheetByIdRequestVO
requestVO
);
CommonResultIDResponseVO
updateInformedSheetById
(
UpdateInformedSheetByIdRequestVO
requestVO
);
CommonResultIDResponseVO
signInformedSheet
(
SignInformedSheetRequestVO
requestVO
);
QueryInformedSheetListResponseVO
queryInformedSheetList
(
QueryInformedSheetListRequestVO
requestVO
);
}
}
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerHiringContractServiceImpl.java
View file @
c5d34da6
...
@@ -546,6 +546,9 @@ public class PractitionerHiringContractServiceImpl implements PractitionerHiring
...
@@ -546,6 +546,9 @@ public class PractitionerHiringContractServiceImpl implements PractitionerHiring
}
}
//获取头像流
//获取头像流
InputStream
inputStream
=
(
InputStream
)
input
.
get
(
"is"
);
InputStream
inputStream
=
(
InputStream
)
input
.
get
(
"is"
);
if
(
null
==
inputStream
)
{
return
null
;
}
String
filePath
=
localDirectory
+
filename
;
String
filePath
=
localDirectory
+
filename
;
byte
[]
data
=
new
byte
[
1024
];
byte
[]
data
=
new
byte
[
1024
];
...
...
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerServiceImpl.java
View file @
c5d34da6
...
@@ -2,12 +2,12 @@ package com.yd.api.practitioner.service.impl;
...
@@ -2,12 +2,12 @@ package com.yd.api.practitioner.service.impl;
import
com.github.pagehelper.PageHelper
;
import
com.github.pagehelper.PageHelper
;
import
com.google.common.base.Strings
;
import
com.google.common.base.Strings
;
import
com.libs.pdf.PDFTemplate
;
import
com.yd.api.customer.service.CustomerService
;
import
com.yd.api.customer.service.CustomerService
;
import
com.yd.api.customer.vo.register.RegisterRequestVO
;
import
com.yd.api.customer.vo.register.RegisterRequestVO
;
import
com.yd.api.customer.vo.register.RegisterResponseVO
;
import
com.yd.api.customer.vo.register.RegisterResponseVO
;
import
com.yd.api.practitioner.vo.informed.QueryInformedSheetByIdResponseVO
;
import
com.yd.api.practitioner.vo.hiring.CommonResultResponseVO
;
import
com.yd.api.practitioner.vo.informed.SaveInformedSheetRequestVO
;
import
com.yd.api.practitioner.vo.informed.*
;
import
com.yd.api.practitioner.vo.informed.UpdateInformedSheetByIdRequestVO
;
import
com.yd.api.practitioner.vo.login.CanSeeSalaryListResponseVO
;
import
com.yd.api.practitioner.vo.login.CanSeeSalaryListResponseVO
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginBasicInfo
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginBasicInfo
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginRequestVO
;
import
com.yd.api.practitioner.vo.login.PractitionerLoginRequestVO
;
...
@@ -67,9 +67,11 @@ import com.yd.rmi.tencent.wechatinterf.pojo.ticket.TicketRequest;
...
@@ -67,9 +67,11 @@ import com.yd.rmi.tencent.wechatinterf.pojo.ticket.TicketRequest;
import
com.yd.rmi.tencent.wechatinterf.pojo.token.TokenRequest
;
import
com.yd.rmi.tencent.wechatinterf.pojo.token.TokenRequest
;
import
com.yd.util.CommonUtil
;
import
com.yd.util.CommonUtil
;
import
com.yd.util.HttpUtil
;
import
com.yd.util.HttpUtil
;
import
com.yd.util.PDFConfiguration
;
import
com.yd.util.config.ZHBErrorConfig
;
import
com.yd.util.config.ZHBErrorConfig
;
import
org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
;
import
org.apache.commons.beanutils.BeanPropertyValueEqualsPredicate
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.apache.commons.lang.StringUtils
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
...
@@ -3555,7 +3557,7 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
...
@@ -3555,7 +3557,7 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
// 数据库实体
// 数据库实体
AgPoInformed
informed
=
new
AgPoInformed
();
AgPoInformed
informed
=
new
AgPoInformed
();
BeanUtils
.
copyProperties
(
requestVO
,
informed
);
BeanUtils
.
copyProperties
(
requestVO
,
informed
);
informed
.
setStatus
(
"0"
);
informed
.
setIsActive
(
1
);
informed
.
setIsActive
(
1
);
Date
curDate
=
new
Date
();
Date
curDate
=
new
Date
();
...
@@ -3620,4 +3622,197 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
...
@@ -3620,4 +3622,197 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
}
}
return
resp
;
return
resp
;
}
}
@Override
public
CommonResultIDResponseVO
signInformedSheet
(
SignInformedSheetRequestVO
requestVO
)
{
CommonResultIDResponseVO
resp
=
new
CommonResultIDResponseVO
();
Long
id
=
requestVO
.
getId
();
String
imgStr
=
requestVO
.
getImgStr
();
try
{
if
(
StringUtils
.
isBlank
(
imgStr
))
{
resp
.
setCommonResult
(
new
CommonResult
(
false
,
"file不可为空"
));
return
resp
;
}
if
(
imgStr
.
indexOf
(
"data:image/png;"
)
!=
-
1
)
{
imgStr
=
imgStr
.
replace
(
"data:image/png;base64,"
,
""
);
}
byte
[]
fileBytes
=
Base64
.
getDecoder
().
decode
(
imgStr
);
InputStream
inputStream
=
new
ByteArrayInputStream
(
fileBytes
);
// 上传图片至阿里云
StringBuffer
fileName
=
new
StringBuffer
();
fileName
.
append
(
"InformedSheet/"
).
append
(
id
).
append
(
"/"
);
String
originalFilename
=
generateKey
(
10
);
String
key
=
fileName
.
append
(
originalFilename
).
append
(
".png"
).
toString
();
String
putFileToOss
=
ossService
.
putFileToOss
(
null
,
key
,
inputStream
);
// 保存入库
AgPoInformed
informed
=
informedMapper
.
selectByPrimaryKey
(
requestVO
.
getId
());
informed
.
setId
(
id
);
informed
.
setSignOssPath
(
putFileToOss
);
SimpleDateFormat
format
=
new
SimpleDateFormat
(
"yyyy-MM-dd"
);
String
signDate
=
format
.
format
(
new
Date
());
informed
.
setSignDate
(
signDate
);
informed
.
setStatus
(
"1"
);
informedMapper
.
updateByPrimaryKeySelective
(
informed
);
resp
.
setCommonResult
(
new
CommonResult
(
true
,
ZHBErrorConfig
.
getErrorInfo
(
"800000"
)));
// 生成pdf
new
Thread
(
new
Runnable
()
{
private
String
getImgTolocal
(
String
localDirectory
,
String
filename
,
String
imgUrl
)
{
Map
<
String
,
Object
>
input
=
HttpUtil
.
getInput
(
imgUrl
);
if
(!(
boolean
)
input
.
get
(
"success"
))
{
return
null
;
}
//获取头像流
InputStream
inputStream
=
(
InputStream
)
input
.
get
(
"is"
);
if
(
null
==
inputStream
)
{
return
null
;
}
String
filePath
=
localDirectory
+
filename
;
byte
[]
data
=
new
byte
[
1024
];
int
len
=
0
;
FileOutputStream
fileOutputStream
=
null
;
try
{
fileOutputStream
=
new
FileOutputStream
(
filePath
);
while
((
len
=
inputStream
.
read
(
data
))
!=
-
1
)
{
fileOutputStream
.
write
(
data
,
0
,
len
);
}
return
filePath
;
}
catch
(
IOException
e
)
{
// TODO Auto-generated catch block
e
.
printStackTrace
();
}
finally
{
if
(
inputStream
!=
null
)
{
try
{
inputStream
.
close
();
}
catch
(
IOException
e
)
{
// TODO Auto-generated catch block
e
.
printStackTrace
();
}
}
if
(
fileOutputStream
!=
null
)
{
try
{
fileOutputStream
.
close
();
}
catch
(
IOException
e
)
{
// TODO Auto-generated catch block
e
.
printStackTrace
();
}
}
}
return
null
;
}
private
String
putContractFileToOSS
(
String
businessType
,
String
file
,
Long
recordId
)
throws
Exception
{
StringBuffer
directory
=
new
StringBuffer
();
directory
.
append
(
businessType
).
append
(
"/"
).
append
(
recordId
).
append
(
"/"
);
File
tempFile
=
new
File
(
file
.
trim
());
//数据源不存在
if
(!
tempFile
.
exists
())
{
throw
new
RuntimeException
(
"目标文件地址不存在!"
);
}
//非文件类型
if
(!
tempFile
.
isFile
())
{
throw
new
RuntimeException
(
"目标文件不是文件类型!"
);
}
InputStream
is
=
null
;
String
ossPath
=
null
;
try
{
is
=
new
BufferedInputStream
(
new
FileInputStream
(
tempFile
));
//读取数据源
String
fileName
=
tempFile
.
getName
();
String
key
=
directory
.
append
(
fileName
).
toString
();
ossPath
=
ossService
.
putFileToOss
(
null
,
key
,
is
);
}
catch
(
FileNotFoundException
e
)
{
e
.
printStackTrace
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
finally
{
if
(
is
!=
null
)
{
try
{
is
.
close
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
}
}
return
ossPath
;
}
@Override
public
void
run
()
{
AgPoInformed
informed
=
informedMapper
.
selectByPrimaryKey
(
requestVO
.
getId
());
if
(
informed
!=
null
)
{
String
templatePDF
=
PDFConfiguration
.
getProperty
(
"informed.pdf.template"
);
//模板文件生成临时文件目录
String
tmpPathPDF
=
PDFConfiguration
.
getProperty
(
"informed.pdf.temp.path"
);
//PDF模板输出结果文件
String
templateResultPDF
=
tmpPathPDF
+
informed
.
getId
()
+
"-signedInformed.pdf"
;
//填充数据
Map
<
String
,
String
>
initDatas
=
new
HashMap
<>();
Map
<
String
,
String
>
initImages
=
new
HashMap
<>();
//下载图片
String
signPicture
=
this
.
getImgTolocal
(
tmpPathPDF
,
"sign.png"
,
informed
.
getSignOssPath
());
initImages
.
put
(
"p_name"
,
signPicture
);
String
pDate
=
informed
.
getSignDate
();
initDatas
.
put
(
"p_date"
,
pDate
);
//按模板填充数据生成结果PDF
PDFTemplate
.
generatePDF
(
templatePDF
,
templateResultPDF
,
initDatas
,
initImages
);
try
{
//上传至oss ossService
String
ossPath
=
this
.
putContractFileToOSS
(
"informed"
,
templateResultPDF
,
informed
.
getId
());
informed
.
setInformedOssPath
(
ossPath
);
informedMapper
.
updateByPrimaryKeySelective
(
informed
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
}
}
}).
start
();
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
resp
.
setCommonResult
(
new
CommonResult
(
false
,
"保存失败"
));
}
return
resp
;
}
@Override
public
QueryInformedSheetListResponseVO
queryInformedSheetList
(
QueryInformedSheetListRequestVO
requestVO
)
{
QueryInformedSheetListResponseVO
resp
=
new
QueryInformedSheetListResponseVO
();
try
{
AgPoInformed
informed
=
new
AgPoInformed
();
BeanUtils
.
copyProperties
(
requestVO
,
informed
);
List
<
AgPoInformed
>
list
=
informedMapper
.
selectByRecord
(
informed
);
resp
.
setList
(
list
);
resp
.
setCommonResult
(
new
CommonResult
(
true
,
ZHBErrorConfig
.
getErrorInfo
(
"800000"
)));
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
resp
.
setCommonResult
(
new
CommonResult
(
false
,
e
.
getMessage
()));
}
return
resp
;
}
}
}
yd-api/src/main/java/com/yd/api/practitioner/vo/informed/QueryInformedSheetListRequestVO.java
0 → 100644
View file @
c5d34da6
package
com
.
yd
.
api
.
practitioner
.
vo
.
informed
;
import
lombok.Data
;
@Data
public
class
QueryInformedSheetListRequestVO
{
private
Long
practitionerId
;
private
String
customerName
;
private
String
customerMobile
;
private
String
policyNo
;
private
String
signDate
;
}
yd-api/src/main/java/com/yd/api/practitioner/vo/informed/QueryInformedSheetListResponseVO.java
0 → 100644
View file @
c5d34da6
package
com
.
yd
.
api
.
practitioner
.
vo
.
informed
;
import
com.yd.api.result.CommonResult
;
import
com.yd.dal.entity.customer.AgPoInformed
;
import
lombok.Data
;
import
java.util.List
;
@Data
public
class
QueryInformedSheetListResponseVO
{
private
CommonResult
commonResult
;
private
List
<
AgPoInformed
>
list
;
}
yd-api/src/main/java/com/yd/api/practitioner/vo/informed/SignInformedSheetRequestVO.java
0 → 100644
View file @
c5d34da6
package
com
.
yd
.
api
.
practitioner
.
vo
.
informed
;
import
lombok.Data
;
@Data
public
class
SignInformedSheetRequestVO
{
private
Long
id
;
private
String
imgStr
;
}
yd-api/src/main/java/com/yd/dal/entity/customer/AgPoInformed.java
View file @
c5d34da6
...
@@ -59,6 +59,11 @@ public class AgPoInformed implements Serializable {
...
@@ -59,6 +59,11 @@ public class AgPoInformed implements Serializable {
private
String
signDate
;
private
String
signDate
;
/**
/**
* 客户签名url
*/
private
String
signOssPath
;
/**
* 签署状态, 0=未签署; 1=已签署;
* 签署状态, 0=未签署; 1=已签署;
*/
*/
private
String
status
;
private
String
status
;
...
@@ -313,4 +318,12 @@ public class AgPoInformed implements Serializable {
...
@@ -313,4 +318,12 @@ public class AgPoInformed implements Serializable {
sb
.
append
(
"]"
);
sb
.
append
(
"]"
);
return
sb
.
toString
();
return
sb
.
toString
();
}
}
public
String
getSignOssPath
()
{
return
signOssPath
;
}
public
void
setSignOssPath
(
String
signOssPath
)
{
this
.
signOssPath
=
signOssPath
;
}
}
}
\ No newline at end of file
yd-api/src/main/java/com/yd/dal/mapper/customer/AgPoInformedMapper.java
View file @
c5d34da6
...
@@ -2,6 +2,8 @@ package com.yd.dal.mapper.customer;
...
@@ -2,6 +2,8 @@ package com.yd.dal.mapper.customer;
import
com.yd.dal.entity.customer.AgPoInformed
;
import
com.yd.dal.entity.customer.AgPoInformed
;
import
java.util.List
;
public
interface
AgPoInformedMapper
{
public
interface
AgPoInformedMapper
{
int
deleteByPrimaryKey
(
Long
id
);
int
deleteByPrimaryKey
(
Long
id
);
...
@@ -14,4 +16,6 @@ public interface AgPoInformedMapper {
...
@@ -14,4 +16,6 @@ public interface AgPoInformedMapper {
int
updateByPrimaryKeySelective
(
AgPoInformed
record
);
int
updateByPrimaryKeySelective
(
AgPoInformed
record
);
int
updateByPrimaryKey
(
AgPoInformed
record
);
int
updateByPrimaryKey
(
AgPoInformed
record
);
List
<
AgPoInformed
>
selectByRecord
(
AgPoInformed
record
);
}
}
\ No newline at end of file
yd-api/src/main/resources/mapper/customer/AgPoInformedMapper.xml
View file @
c5d34da6
...
@@ -226,4 +226,25 @@
...
@@ -226,4 +226,25 @@
updated_by = #{updatedBy,jdbcType=BIGINT}
updated_by = #{updatedBy,jdbcType=BIGINT}
where id = #{id,jdbcType=BIGINT}
where id = #{id,jdbcType=BIGINT}
</update>
</update>
<select
id=
"selectByRecord"
parameterType=
"com.yd.dal.entity.customer.AgPoInformed"
resultMap=
"BaseResultMap"
>
select
<include
refid=
"Base_Column_List"
/>
from ag_po_informed
where 1=1
<if
test=
"customerName != null"
>
and customer_name = #{customerName,jdbcType=VARCHAR}
</if>
<if
test=
"customerMobile != null"
>
and customer_mobile = #{customerMobile,jdbcType=VARCHAR}
</if>
<if
test=
"updatedAt != null"
>
and practitioner_id = #{updatedAt,jdbcType=BIGINT}
</if>
<if
test=
"policyNo != null"
>
and policy_no = #{policyNo,jdbcType=VARCHAR}
</if>
<if
test=
"signDate != null"
>
and sign_date = #{signDate,jdbcType=VARCHAR}
</if>
</select>
</mapper>
</mapper>
\ No newline at end of file
yd-api/src/main/resources/pdfconfiguration.properties
View file @
c5d34da6
...
@@ -8,9 +8,13 @@ pdf.uncheck=/opt/tomcat8/conf/ydpdf/pdfres/uncheck.png
...
@@ -8,9 +8,13 @@ pdf.uncheck=/opt/tomcat8/conf/ydpdf/pdfres/uncheck.png
pdf.temp.path
=
/opt/tomcat8/temp/
pdf.temp.path
=
/opt/tomcat8/temp/
pdf.firstParty
=
上海银盾保险经纪有限公司
pdf.firstParty
=
\u
4E0A
\u
6D77
\u
94F6
\u
76FE
\u
4FDD
\u9669\u
7ECF
\u
7EAA
\u6709\u9650\u
516C
\u
53F8
pdf.firstPartyResponser
=
Wan Shuang Lian
pdf.firstPartyResponser
=
Wan Shuang Lian
pdf.firstPartyAddress
=
上海市浦东新区张杨路560号中融恒瑞国际西楼1706室
pdf.firstPartyAddress
=
\u
4E0A
\u
6D77
\u
5E02
\u
6D66
\u
4E1C
\u
65B0
\u
533A
\u
5F20
\u6768\u
8DEF560
\u
53F7
\u
4E2D
\u
878D
\u6052\u
745E
\u
56FD
\u9645\u
897F
\u
697C1706
\u
5BA4
pdf.position.x
=
450
pdf.position.x
=
450
pdf.position.y
=
150
pdf.position.y
=
150
#\u5BA2\u6237\u544A\u77E5\u4E66\u76EE\u5F55
informed.pdf.template
=
/opt/tomcat8/conf/ydpdf/informed/templateInformed.pdf
informed.pdf.temp.path
=
/opt/tomcat8/conf/ydpdf/informed
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