21 lines
601 B
Java
21 lines
601 B
Java
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";
|
|
|
|
}
|