This commit is contained in:
77
2024-08-10 16:13:41 +08:00
parent 2a735161a2
commit eacfd189e8
11 changed files with 184 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
package com.ruoyi.cai.config;
import lombok.Data;
import lombok.ToString;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@Data
@ToString(exclude={"secretKey","appSecretKey"})
@Configuration
@ConfigurationProperties(prefix = "tencent.captcha")
public class VerCodeConfig {
private String secretId = "IKIDMabOxIPJ0QgiW5RZr9IGD3jDVdnnZEj4";
private String secretKey = "KUQFsJXYM0ShhWBi363rX2LTN3WnsjMt";
private Long captchaAppId = 189912059L;
private String appSecretKey = "QB0m1JCZjuu0c2fK33wL2HwYg";
}