Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
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
youjj
cloud-platform
Commits
d31ad520
Commit
d31ad520
authored
Jun 14, 2019
by
周健威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
ad0b7117
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
17 deletions
+4
-17
OrderTourDetail.java
.../java/com/xxfc/platform/order/entity/OrderTourDetail.java
+4
-0
PlatformExceptionHandler.java
.../xxfc/platform/order/config/PlatformExceptionHandler.java
+0
-17
No files found.
xx-order/xx-order-api/src/main/java/com/xxfc/platform/order/entity/OrderTourDetail.java
View file @
d31ad520
...
...
@@ -100,6 +100,10 @@ public class OrderTourDetail implements Serializable {
@ApiModelProperty
(
value
=
"具体商品(商品项)id"
)
private
Integer
spePriceId
;
@Column
(
name
=
"verification_id"
)
@ApiModelProperty
(
value
=
"核销id"
)
private
Integer
verificationId
;
//联系人
@Column
(
name
=
"contact_man"
)
@ApiModelProperty
(
value
=
"联系人"
)
...
...
xx-order/xx-order-server/src/main/java/com/xxfc/platform/order/config/PlatformExceptionHandler.java
deleted
100644 → 0
View file @
ad0b7117
package
com
.
xxfc
.
platform
.
order
.
config
;
import
com.github.wxiaoqi.security.common.exception.BaseException
;
import
com.github.wxiaoqi.security.common.msg.BaseResponse
;
import
org.springframework.web.bind.annotation.ExceptionHandler
;
import
org.springframework.web.bind.annotation.RestControllerAdvice
;
@RestControllerAdvice
public
class
PlatformExceptionHandler
{
@ExceptionHandler
(
BaseException
.
class
)
public
BaseResponse
baseExceptionHandler
(
BaseException
e
)
{
return
new
BaseResponse
(
e
.
getStatus
(),
e
.
getMessage
());
}
}
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