15 lines
311 B
Java
15 lines
311 B
Java
package com.youlai.boot.codegen.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.youlai.boot.codegen.model.entity.GenTableColumn;
|
|
|
|
/**
|
|
* 代码生成配置接口
|
|
*
|
|
* @author Ray
|
|
* @since 2.10.0
|
|
*/
|
|
public interface GenTableColumnService extends IService<GenTableColumn> {
|
|
|
|
}
|