You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package com.simple.config;
-
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
-
- /**
- * @author Stormeye
- */
- @Component
- @ConfigurationProperties(prefix = "pay")
- public class PayProperty {
- /**
- * 真实支付
- */
- private boolean real;
-
- public boolean isReal() {
- return real;
- }
-
- public void setReal(boolean real) {
- this.real = real;
- }
- }
|