大模型分析结果展示
This commit is contained in:
@@ -54,12 +54,12 @@ public class CustomerProfileMockInsertDataScheduler {
|
||||
|
||||
// 经销商门店数据 - 来自适配准真实.sql的经销商门店JSON
|
||||
private static final String[][] DEALERSHIPS = {
|
||||
{"1957424710587330562", "广州奔驰4S店"},
|
||||
{"1957424711560409089", "北京奥迪4S店"},
|
||||
{"1957424714953601026", "上海宝马4S店"},
|
||||
{"1957424739267981313", "深圳雷克萨斯4S店"},
|
||||
{"1957424740000000001", "成都保时捷4S店"},
|
||||
{"1957424740000000017", "昆明威兹曼4S店"}
|
||||
{"华南区", "1957424710587330562", "广州奔驰4S店"},
|
||||
{"华北区", "1957424711560409089", "北京奥迪4S店"},
|
||||
{"华南区","1957424714953601026", "上海宝马4S店"},
|
||||
{"华南区","1957424739267981313", "深圳雷克萨斯4S店"},
|
||||
{"西南区","1957424740000000001", "成都保时捷4S店"},
|
||||
{"西南区","1957424740000000017", "昆明威兹曼4S店"}
|
||||
};
|
||||
|
||||
// 大区数据 - 确保数据分布均衡
|
||||
@@ -214,9 +214,10 @@ public class CustomerProfileMockInsertDataScheduler {
|
||||
String[] openingRate = OPENING_RATES[random.nextInt(OPENING_RATES.length)];
|
||||
|
||||
// 设置经销商信息
|
||||
analysis.setDealerCode(dealership[0]);
|
||||
analysis.setDealerName(dealership[1]);
|
||||
analysis.setBigArea(BIG_AREAS[random.nextInt(BIG_AREAS.length)]);
|
||||
analysis.setBigArea(dealership[0]);
|
||||
analysis.setDealerCode(dealership[1]);
|
||||
analysis.setDealerName(dealership[2]);
|
||||
|
||||
|
||||
// 设置项目信息
|
||||
analysis.setProjectId(project[0]);
|
||||
|
||||
Reference in New Issue
Block a user