Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
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
项目统一框架
amos-boot-biz
Commits
d45967ad
Commit
d45967ad
authored
Dec 15, 2023
by
xixinzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(jg):不需要特殊处理图片
parent
a7a76094
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
JgInstallationNoticeDto.java
.../amos/boot/module/jg/api/dto/JgInstallationNoticeDto.java
+2
-2
JgInstallationNoticeServiceImpl.java
.../jg/biz/service/impl/JgInstallationNoticeServiceImpl.java
+2
-4
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/dto/JgInstallationNoticeDto.java
View file @
d45967ad
...
...
@@ -164,10 +164,10 @@ public class JgInstallationNoticeDto extends BaseDto {
private
String
inputUnitNo
;
@ApiModelProperty
(
value
=
"安装委托书图片"
)
private
List
<
Map
<
String
,
String
>>
proxyStatementAttachmentList
;
private
String
proxyStatementAttachmentList
;
@ApiModelProperty
(
value
=
"安装合同照片"
)
private
List
<
Map
<
String
,
String
>>
installContractAttachmentList
;
private
String
installContractAttachmentList
;
@ApiModelProperty
(
value
=
"安装委托书图片"
)
private
String
proxyStatementAttachment
;
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/JgInstallationNoticeServiceImpl.java
View file @
d45967ad
...
...
@@ -282,10 +282,8 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
private
void
convertField
(
JgInstallationNoticeDto
model
)
{
// 处理图片
String
proxyStatementAttachment
=
convertImageUrl
(
model
.
getInstallContractAttachmentList
());
String
installContractAttachment
=
convertImageUrl
(
model
.
getProxyStatementAttachmentList
());
model
.
setProxyStatementAttachment
(
proxyStatementAttachment
);
model
.
setInstallContractAttachment
(
installContractAttachment
);
model
.
setProxyStatementAttachment
(
model
.
getProxyStatementAttachmentList
());
model
.
setInstallContractAttachment
(
model
.
getInstallContractAttachmentList
());
// 分割省市区字段
String
province
=
model
.
getProvince
();
...
...
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