17 lines
221 B
Java
17 lines
221 B
Java
package com.tiesheng.database.service;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
/**
|
|
* @author hao
|
|
*/
|
|
@Component
|
|
public interface DbDataInitializer {
|
|
|
|
/**
|
|
* 初始化数据
|
|
*/
|
|
void init();
|
|
|
|
}
|