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
f926c1bb
Commit
f926c1bb
authored
Jul 18, 2019
by
hezhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
123
parent
81c9d8f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
ActivityFeign.java
.../java/com/xxfc/platform/activity/feign/ActivityFeign.java
+2
-1
UserCouponController.java
...com/xxfc/platform/activity/rest/UserCouponController.java
+1
-1
No files found.
xx-activity/xx-activity-api/src/main/java/com/xxfc/platform/activity/feign/ActivityFeign.java
View file @
f926c1bb
...
@@ -33,7 +33,8 @@ public interface ActivityFeign {
...
@@ -33,7 +33,8 @@ public interface ActivityFeign {
@RequestParam
(
value
=
"TickerNo"
)
String
TickerNo
,
@RequestParam
(
value
=
"TickerNo"
)
String
TickerNo
,
@RequestParam
(
value
=
"orderNo"
)
String
orderNo
,
@RequestParam
(
value
=
"orderNo"
)
String
orderNo
,
@RequestParam
(
value
=
"channel"
)
Integer
channel
,
@RequestParam
(
value
=
"channel"
)
Integer
channel
,
@RequestParam
(
value
=
"amout"
)
BigDecimal
amout
);
@RequestParam
(
value
=
"amout"
)
BigDecimal
amout
,
@RequestParam
(
value
=
"type"
)
Integer
type
);
@ApiOperation
(
"优惠卷取消使用"
)
@ApiOperation
(
"优惠卷取消使用"
)
@RequestMapping
(
value
=
"/user/cancelUse"
,
method
=
RequestMethod
.
POST
)
@RequestMapping
(
value
=
"/user/cancelUse"
,
method
=
RequestMethod
.
POST
)
...
...
xx-activity/xx-activity-server/src/main/java/com/xxfc/platform/activity/rest/UserCouponController.java
View file @
f926c1bb
...
@@ -53,7 +53,7 @@ public class UserCouponController extends ActivityBaseController<UserCouponBiz>
...
@@ -53,7 +53,7 @@ public class UserCouponController extends ActivityBaseController<UserCouponBiz>
@RequestParam
(
value
=
"orderNo"
,
defaultValue
=
""
)
String
orderNo
,
@RequestParam
(
value
=
"orderNo"
,
defaultValue
=
""
)
String
orderNo
,
@RequestParam
(
value
=
"channel"
,
defaultValue
=
"1"
)
Integer
channel
,
@RequestParam
(
value
=
"channel"
,
defaultValue
=
"1"
)
Integer
channel
,
@RequestParam
(
value
=
"amout"
,
defaultValue
=
"0.00"
)
BigDecimal
amout
,
@RequestParam
(
value
=
"amout"
,
defaultValue
=
"0.00"
)
BigDecimal
amout
,
@RequestParam
(
value
=
"
amout
"
,
defaultValue
=
"1"
)
Integer
type
@RequestParam
(
value
=
"
type
"
,
defaultValue
=
"1"
)
Integer
type
)
{
)
{
return
baseBiz
.
useTickerNo
(
userId
,
TickerNo
,
orderNo
,
channel
,
amout
,
type
);
return
baseBiz
.
useTickerNo
(
userId
,
TickerNo
,
orderNo
,
channel
,
amout
,
type
);
}
}
...
...
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