|
@@ -59,6 +59,19 @@ public class CrmCustomerController extends BaseController
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @Description: 模糊查询客户姓名
|
|
|
+ * @Param:
|
|
|
+ * @Return:
|
|
|
+ * @Author xgb
|
|
|
+ * @Date 2025/9/22 16:04
|
|
|
+ */
|
|
|
+ @GetMapping("/getCustName")
|
|
|
+ public List<String> getCustName(CrmCustomer crmCustomer){
|
|
|
+ startPage();
|
|
|
+ return crmCustomerService.getCustName(crmCustomer);
|
|
|
+ }
|
|
|
+
|
|
|
@PreAuthorize("@ss.hasPermi('crm:customer:addLine')")
|
|
|
@Log(title = "创建线索客户", businessType = BusinessType.INSERT)
|
|
|
@PostMapping("/addLine")
|