Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-enterprise
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
base_platform_enterprise
gic-platform-enterprise
Commits
448ad17e
Commit
448ad17e
authored
Jul 01, 2020
by
陶光胜
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'developer' into 'master'
Developer See merge request
!17
parents
e539ccbd
c20918e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
2 deletions
+29
-2
InvoiceDTO.java
...-api/src/main/java/com/gic/enterprise/dto/InvoiceDTO.java
+28
-0
WmStoreApiServiceImpl.java
.../enterprise/service/outer/impl/WmStoreApiServiceImpl.java
+1
-2
No files found.
gic-platform-enterprise-api/src/main/java/com/gic/enterprise/dto/InvoiceDTO.java
View file @
448ad17e
...
...
@@ -56,6 +56,16 @@ public class InvoiceDTO implements Serializable{
*/
private
String
shippingAddress
;
/**
* 电子发票类型,接收人邮箱
*/
private
String
email
;
/**
* 营业执照 图片地址
*/
private
String
businessLicense
;
public
String
getAccountName
()
{
return
accountName
;
}
...
...
@@ -127,4 +137,22 @@ public class InvoiceDTO implements Serializable{
public
void
setShippingAddress
(
String
shippingAddress
)
{
this
.
shippingAddress
=
shippingAddress
;
}
public
String
getEmail
()
{
return
email
;
}
public
InvoiceDTO
setEmail
(
String
email
)
{
this
.
email
=
email
;
return
this
;
}
public
String
getBusinessLicense
()
{
return
businessLicense
;
}
public
InvoiceDTO
setBusinessLicense
(
String
businessLicense
)
{
this
.
businessLicense
=
businessLicense
;
return
this
;
}
}
gic-platform-enterprise-service/src/main/java/com/gic/enterprise/service/outer/impl/WmStoreApiServiceImpl.java
View file @
448ad17e
...
...
@@ -239,8 +239,7 @@ public class WmStoreApiServiceImpl implements WmStoreApiService {
return
ServiceResponse
.
failure
(
ErrorCode
.
PARAMETER_ERROR
.
getCode
(),
"店铺配置类型值非法"
);
}
//新增
return
ServiceResponse
.
failure
(
ErrorCode
.
PARAMETER_ERROR
.
getCode
(),
WmStoreConfigTypeEnum
.
getMessageByCode
(
wmStoreConfigType
)
+
"还未配置"
);
return
ServiceResponse
.
success
(
new
WmStoreConfigDTO
());
}
return
ServiceResponse
.
success
(
EntityUtil
.
changeEntityNew
(
WmStoreConfigDTO
.
class
,
config
));
}
...
...
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