traffic-audit-server/src/main/java/com/trafficaudit/llmintegration/service/DbQueryExecutor.java
@@ -95,6 +95,28 @@
                new String[]{"report_period", "region_name", "freight_m01", "freight_m02", "freight_m03", "freight_m04",
                        "freight_m05", "freight_m06", "freight_m07", "freight_m08", "freight_m09", "freight_m10", "freight_m11",
                        "freight_m12", "turnover_m01", "turnover_m12"});
        register("h2031_enterprise_monthly", "公路旅客月报H203-1表(道路旅客运输月度生产情况)",
                new String[]{"id", "report_period", "region_code", "enterprise_code", "enterprise_name", "vehicle_total",
                        "seat_total", "passenger_total", "turnover_total", "avg_distance_total", "verify_explanation"},
                new String[]{"主键", "报表期", "所属地区代码", "企业代码", "企业名称", "车辆数", "载客位数",
                        "客运量(万人)", "旅客周转量(万人公里)", "平均运距(公里)", "企业核实解释"},
                new String[]{"id", "report_period", "enterprise_name", "vehicle_total", "seat_total",
                        "passenger_total", "turnover_total", "avg_distance_total", "verify_explanation"});
        register("city_bus_monthly", "城市公交月度运营情况(企业级,含轨道/轮渡字段)",
                new String[]{"id", "report_period", "region_code", "city", "enterprise_name", "op_vehicles",
                        "passenger_volume", "turnover", "avg_distance", "passenger_chengxiang", "turnover_chengxiang",
                        "verify_explanation"},
                new String[]{"主键", "报表期", "所属地区代码", "市州", "企业名称", "运营车数", "客运量(万人次)",
                        "旅客周转量(万人公里)", "平均运距(公里)", "城际城乡客运量", "城际城乡周转量", "企业核实解释"},
                new String[]{"id", "report_period", "enterprise_name", "op_vehicles", "passenger_volume",
                        "turnover", "avg_distance", "verify_explanation"});
        register("city_taxi_monthly", "巡游出租汽车运营服务情况月报(市州级)",
                new String[]{"id", "report_period", "region_code", "city", "trip_total", "passenger_volume",
                        "turnover", "op_vehicles", "avg_distance", "verify_explanation"},
                new String[]{"主键", "报表期", "所属地区代码", "市州", "载客车次总数", "客运量(万人次)",
                        "旅客周转量(万人公里)", "运营车辆数", "平均运距(公里)", "企业核实解释"},
                new String[]{"id", "report_period", "city", "trip_total", "passenger_volume",
                        "turnover", "op_vehicles", "avg_distance", "verify_explanation"});
        register("audit_result", "审核结果",
                new String[]{"id", "rule_id", "report_id", "enterprise_code", "report_period", "actual_value",
                        "threshold_value", "deviation", "status", "review_comment", "created_at"},