数据
This commit is contained in:
@@ -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";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user