package com.chinaztt.mes.production.config;
|
|
import lombok.Data;
|
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.cloud.context.config.annotation.RefreshScope;
|
import org.springframework.stereotype.Component;
|
|
/**
|
* @Author: yy
|
* @Date: 2023/2/9 14:17
|
* @Description:工作台班次未提交提醒企业微信机器人WEBHOOK
|
*/
|
@RefreshScope
|
@Component
|
@Data
|
public class UnsubmitDutyRecordConfig {
|
@Value("${dutyRecord.webhook:}")
|
private String dutyRecordWebhook;
|
}
|