123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package ieven.server.webapp.domain.alipay;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- import java.util.List;
- @Component
- @ConfigurationProperties(prefix = "headers")
- @Data
- public class HeaderProperties {
- private List<String> antiCheatOrigin;
- private List<String> antiCheatOutput;
- private List<String> securityOrigin;
- private List<String> securityOutput;
- private List<String> scaleAnalysisOutput;
- private List<String> transferAnalysisOutput;
- private List<String> endAnalysisOutput;
- private List<String> deliveryAnalysisOutput;
- private List<String> ipAnalysisOutput;
- private List<String> antiSecurityTradeOutput;
- private List<String> antiSecurityTradeScaleAnalysisOutput;
- private List<String> antiSecurityTradeEndAnalysisOutput;
- private List<String> orderedNames;
- private List<String>antiSecurityTrade;
- private List<String>staticUserOutput;
- private List<String>economicOrder;
- private List<String>economicOrderOutput;
- private List<String>staticUserAllOutput;
- private List<String>userAccountOutput;
- private List<String> securityOriginNew;
- private List<String> securityOutputNew;
- private List<String>blackOrder;
- private List<String>blackOrderOutput;
- public HeaderProperties() {}
- }
|