Files
smartDriveEE/src/main/java/com/rj/config/LbAssessmentDingTalkProperties.java
2026-05-15 17:35:26 +08:00

28 lines
615 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.rj.config;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* 申请评估 - 钉钉群机器人 Webhook 配置。
*/
@Data
@ConfigurationProperties(prefix = "lb.assessment-apply.dingtalk")
public class LbAssessmentDingTalkProperties {
/**
* 是否启用钉钉发送。
*/
private boolean enabled = true;
/**
* 自定义机器人 Webhook 中的 access_token。
*/
private String accessToken = "";
/**
* 加签密钥SEC 开头);未配置则不加签。
*/
private String secret = "";
}