22 lines
389 B
Java
22 lines
389 B
Java
package ryas.gen;
|
|
|
|
import com.ruoyi.common.datasource.mybatis.gen.MyBatisGenerationHelper;
|
|
|
|
/**
|
|
* MyBatis代码生成
|
|
*
|
|
* @author Alan Scipio
|
|
* created on 2024/2/1
|
|
*/
|
|
public class GenSystem {
|
|
|
|
public static void main(String[] args) {
|
|
try {
|
|
MyBatisGenerationHelper.generate();
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
}
|