xc
2020-12-04 6566968d727f3739926c401b39925c6f55dff4ec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
    }
}