| | |
| | | @Component |
| | | public class ConfigCheckUtils { |
| | | |
| | | public static String checkAlipayConfig(AliConfigEntity WxConfigEntity) { |
| | | if(WxConfigEntity == null) { |
| | | public static String checkAlipayConfig(AliConfigEntity aliConfig) { |
| | | if(aliConfig == null) { |
| | | return "下单失败!请联系管理员处理!错误码:100"; |
| | | } else if (WxConfigEntity.getAppId() == null || WxConfigEntity.getPrivateKey() == null || WxConfigEntity.getPublicKey() == null) { |
| | | } else if (aliConfig.getAppId() == null || aliConfig.getPrivateKey() == null || aliConfig.getPublicKey() == null) { |
| | | return "下单失败!请联系管理员处理!错误码:101"; |
| | | } |
| | | return null; |