From 37b0c36e594d485ac82ef8feb53f2ddeaf302045 Mon Sep 17 00:00:00 2001 From: fanzongzhe <285169773@qq.com> Date: Fri, 19 Jul 2024 18:02:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=80=89=E6=8B=A9=E5=AE=A2?= =?UTF-8?q?=E6=88=B7=E6=8E=A5=E5=8F=A31.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../anrui/as/api/ascustomervehicle/AsCustomerCrmVehVo.java | 5 +++++ .../as/biz/ascustomervehicle/AsCustomerVehicleMapper.xml | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/yxt-as/src/main/java/com/yxt/anrui/as/api/ascustomervehicle/AsCustomerCrmVehVo.java b/yxt-as/src/main/java/com/yxt/anrui/as/api/ascustomervehicle/AsCustomerCrmVehVo.java index a0e363d04c..cd5183c635 100644 --- a/yxt-as/src/main/java/com/yxt/anrui/as/api/ascustomervehicle/AsCustomerCrmVehVo.java +++ b/yxt-as/src/main/java/com/yxt/anrui/as/api/ascustomervehicle/AsCustomerCrmVehVo.java @@ -25,4 +25,9 @@ public class AsCustomerCrmVehVo implements Vo { private String salesCompany; // 销售公司 @ApiModelProperty("客户名称") private String customerName; // 客户名称 + + @ApiModelProperty("车型") + private String vehModel; // 客户名称 + @ApiModelProperty("来源") + private String source; // 来源 } diff --git a/yxt-as/src/main/java/com/yxt/anrui/as/biz/ascustomervehicle/AsCustomerVehicleMapper.xml b/yxt-as/src/main/java/com/yxt/anrui/as/biz/ascustomervehicle/AsCustomerVehicleMapper.xml index 55dfd0e16d..b71d80cf85 100644 --- a/yxt-as/src/main/java/com/yxt/anrui/as/biz/ascustomervehicle/AsCustomerVehicleMapper.xml +++ b/yxt-as/src/main/java/com/yxt/anrui/as/biz/ascustomervehicle/AsCustomerVehicleMapper.xml @@ -32,7 +32,9 @@ c.`name` AS customerName, c.customerType, c.mobile, - s.`name` AS salesCompany + s.`name` AS salesCompany, + v.vehModel, + c.source FROM as_customer_vehicle AS v LEFT JOIN anrui_crm.crm_customer_temp AS c ON v.customerSid = c.sid