diff --git a/.gitattributes b/.gitattributes index bc0c0b4..a128f1f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,3 +7,4 @@ *.txt eol=lf *.conf eol=lf *.xml eol=lf +*.bat eol=crlf diff --git a/.gitignore b/.gitignore index 1d85c91..0aeefed 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/wfc-modules/wfc-payment/src/main/java/org/wfc/payment/controller/CreditCardController.java b/wfc-modules/wfc-payment/src/main/java/org/wfc/payment/controller/CreditCardController.java index 4ad5b89..0f893ea 100644 --- a/wfc-modules/wfc-payment/src/main/java/org/wfc/payment/controller/CreditCardController.java +++ b/wfc-modules/wfc-payment/src/main/java/org/wfc/payment/controller/CreditCardController.java @@ -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 diff --git a/wfc-modules/wfc-payment/src/main/resources/banner.txt b/wfc-modules/wfc-payment/src/main/resources/banner.txt index 87f05e9..a6ae798 100644 --- a/wfc-modules/wfc-payment/src/main/resources/banner.txt +++ b/wfc-modules/wfc-payment/src/main/resources/banner.txt @@ -1,10 +1,8 @@ Spring Boot Version: ${spring-boot.version} Spring Application Name: ${spring.application.name} - __ _ - / _| | | -__ __| |_ ___ ______ ___ _ _ ___ | |_ ___ _ __ ___ -\ \ /\ / /| _| / __||______|/ __|| | | |/ __|| __| / _ \| '_ ` _ \ - \ V V / | | | (__ \__ \| |_| |\__ \| |_ | __/| | | | | | - \_/\_/ |_| \___| |___/ \__, ||___/ \__| \___||_| |_| |_| - __/ | - |___/ \ No newline at end of file + __ _ + __ __/ _| ___ _ __ __ _ _ _ _ __ ___ ___ _ __ | |_ + \ \ /\ / / |_ / __|____| '_ \ / _` | | | | '_ ` _ \ / _ \ '_ \| __| + \ V V /| _| (_|_____| |_) | (_| | |_| | | | | | | __/ | | | |_ + \_/\_/ |_| \___| | .__/ \__,_|\__, |_| |_| |_|\___|_| |_|\__| + |_| |___/ \ No newline at end of file