package com.hbbh.adapter.config;
|
|
import lombok.Data;
|
import org.apache.commons.lang3.StringUtils;
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
|
/**
|
* 自动建表 动态注解名称
|
*/
|
@Configuration
|
@Data
|
public class AttrValueConfig{
|
|
private String articleIndexName;
|
|
@Bean
|
public String articleIndexName(){
|
return articleIndexName;
|
}
|
}
|