package com.kidgrow.admin.properties;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
/**
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020
*
* @Description: 索引配置
* @Project:
* @CreateDate: Created in 2020/2/24 13:47
* @Author: liuke
*/
@Data
@ConfigurationProperties(prefix = "kidgrow.indices")
@RefreshScope
public class IndexProperties {
/**
* 配置过滤的索引名:默认只显示这些索引
*/
private String[] show;
}