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