update: payment module add banner and update route
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -7,3 +7,4 @@
|
||||
*.txt eol=lf
|
||||
*.conf eol=lf
|
||||
*.xml eol=lf
|
||||
*.bat eol=crlf
|
||||
|
||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -49,6 +49,9 @@ nbdist/
|
||||
docker/mysql/data
|
||||
docker/mysql/log
|
||||
docker/nacos/logs
|
||||
docker/mysql/db/*.sql
|
||||
docker/wfc/*/jar/*.jar
|
||||
docker/wfc/*/*/jar/*.jar
|
||||
|
||||
# Logs
|
||||
logs
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
package org.wfc.payment.controller;
|
||||
|
||||
import java.util.List;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
@@ -13,7 +12,6 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import org.wfc.common.core.web.controller.BaseController;
|
||||
import org.wfc.common.core.web.domain.AjaxResult;
|
||||
import org.wfc.common.core.web.page.TableDataInfo;
|
||||
import org.wfc.common.log.annotation.Log;
|
||||
import org.wfc.common.log.enums.BusinessType;
|
||||
import org.wfc.common.security.annotation.RequiresPermissions;
|
||||
@@ -29,7 +27,7 @@ import org.wfc.common.core.constant.HttpStatus;
|
||||
* @author simon
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/payments")
|
||||
@RequestMapping("/payment")
|
||||
public class CreditCardController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
Spring Boot Version: ${spring-boot.version}
|
||||
Spring Application Name: ${spring.application.name}
|
||||
__ _
|
||||
/ _| | |
|
||||
__ __| |_ ___ ______ ___ _ _ ___ | |_ ___ _ __ ___
|
||||
\ \ /\ / /| _| / __||______|/ __|| | | |/ __|| __| / _ \| '_ ` _ \
|
||||
\ V V / | | | (__ \__ \| |_| |\__ \| |_ | __/| | | | | |
|
||||
\_/\_/ |_| \___| |___/ \__, ||___/ \__| \___||_| |_| |_|
|
||||
__/ |
|
||||
|___/
|
||||
__ _
|
||||
__ __/ _| ___ _ __ __ _ _ _ _ __ ___ ___ _ __ | |_
|
||||
\ \ /\ / / |_ / __|____| '_ \ / _` | | | | '_ ` _ \ / _ \ '_ \| __|
|
||||
\ V V /| _| (_|_____| |_) | (_| | |_| | | | | | | __/ | | | |_
|
||||
\_/\_/ |_| \___| | .__/ \__,_|\__, |_| |_| |_|\___|_| |_|\__|
|
||||
|_| |___/
|
||||
Reference in New Issue
Block a user