Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ufo
/
yohoufo-fore
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
mali
6 years ago
Commit
814b3c3c7dbed3da68c8898a08fa2ba7a721130e
1 parent
f56dead2
加erp请求前缀,nginx拒绝erp外网请求,防止被刷接口
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
order/src/main/java/com/yohoufo/order/controller/AppraiseController.java
order/src/main/java/com/yohoufo/order/controller/BuyerOrderController.java
order/src/main/java/com/yohoufo/order/controller/BuyerOrderMeta4PlatformController.java
order/src/main/java/com/yohoufo/order/controller/PaymentController.java
order/src/main/java/com/yohoufo/order/controller/SellerOrderController.java
users/src/main/java/com/yohoufo/user/controller/passport/RealNameAuthorize4PlatformController.java
order/src/main/java/com/yohoufo/order/controller/AppraiseController.java
View file @
814b3c3
...
...
@@ -18,7 +18,7 @@ import org.springframework.web.bind.annotation.RestController;
* @date 2018/9/25
*/
@RestController
@RequestMapping
(
value
=
"/order/appraise"
)
@RequestMapping
(
value
=
"/
erp/
order/appraise"
)
@ServiceDesc
(
"orderAppraise"
)
public
class
AppraiseController
{
...
...
order/src/main/java/com/yohoufo/order/controller/BuyerOrderController.java
View file @
814b3c3
...
...
@@ -234,7 +234,7 @@ public class BuyerOrderController {
@IgnoreSession
@IgnoreSignature
@RequestMapping
(
value
=
"/confirmReceive"
)
@RequestMapping
(
value
=
"/
erp/
confirmReceive"
)
@ResponseBody
public
ApiResponse
confirmReceive
(
@RequestBody
OrderRequest
request
)
{
LOG
.
info
(
"method ufo.depot.confirmReceive in, req is {}"
,
request
);
...
...
order/src/main/java/com/yohoufo/order/controller/BuyerOrderMeta4PlatformController.java
View file @
814b3c3
...
...
@@ -15,7 +15,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import
org.springframework.web.bind.annotation.RestController
;
@RestController
@RequestMapping
(
value
=
"/order/buyerOrderMeta"
)
@RequestMapping
(
value
=
"/
erp/
order/buyerOrderMeta"
)
@ServiceDesc
(
"orderBuyerOrderMeta"
)
public
class
BuyerOrderMeta4PlatformController
{
private
final
Logger
logger
=
LoggerUtils
.
getBuyerOrderLogger
();
...
...
order/src/main/java/com/yohoufo/order/controller/PaymentController.java
View file @
814b3c3
...
...
@@ -271,7 +271,7 @@ public class PaymentController {
@IgnoreSignature
@IgnoreSession
//@RequestMapping(params = "method=ufo.order.manualDealMon")
@RequestMapping
(
value
=
"/manualDealMon"
)
@RequestMapping
(
value
=
"/
erp/
manualDealMon"
)
public
ApiResponse
manualDealMon
(
@RequestBody
ManualDealRequest
req
)
{
try
{
paymentService
.
manualDeal
(
req
);
...
...
order/src/main/java/com/yohoufo/order/controller/SellerOrderController.java
View file @
814b3c3
...
...
@@ -185,7 +185,7 @@ public class SellerOrderController {
* @return
* @throws GatewayException
*/
@RequestMapping
(
value
=
"/offShelveByErp"
)
@RequestMapping
(
value
=
"/
erp/
offShelveByErp"
)
@ResponseBody
@IgnoreSession
@IgnoreSignature
...
...
users/src/main/java/com/yohoufo/user/controller/passport/RealNameAuthorize4PlatformController.java
View file @
814b3c3
...
...
@@ -21,7 +21,7 @@ import org.springframework.web.bind.annotation.RestController;
* Created by craig.qin on 2018/9/11.
*/
@RestController
@RequestMapping
(
value
=
"/user/realNameAuthorize"
)
@RequestMapping
(
value
=
"/
erp/
user/realNameAuthorize"
)
@ServiceDesc
(
"userRealNameAuthorize"
)
public
class
RealNameAuthorize4PlatformController
{
private
Logger
logger
=
LoggerFactory
.
getLogger
(
RealNameAuthorize4PlatformController
.
class
);
...
...
Please
register
or
login
to post a comment