liding
5 天以前 b0d96a198e29214f93e2bb3e58e63b51321e3e4a
ruoyi-admin/src/main/java/com/ruoyi/PlusCodeGenerator.java
@@ -27,7 +27,7 @@
public class PlusCodeGenerator {
    // 数据库配置
    private static final String DB_URL = "jdbc:postgresql://192.168.1.35:5432/ruoyi-zd";
    private static final String DB_URL = "jdbc:postgresql://127.0.0.1:5433/zd-02";
    private static final String DB_USERNAME = "postgres";
    private static final String DB_PASSWORD = "123456";
@@ -38,8 +38,8 @@
    public static void main(String[] args) {
        String projectPath = System.getProperty("user.dir"); // 获取项目根路径
        String path = "main-business"; // 模块名称
        String table = "input_inventory_record,output_inventory_record,inventory_summary"; // 表名,多个表逗号隔开
        String author = "chenhj";
        String table = "equipment_usage_detail"; // 表名,多个表逗号隔开
        String author = "ld";
        // 代码输出路径配置
        String outputBasePath = Paths.get(projectPath, path, "src", "main", "java").toString();