1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.nova.sankuai.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.nova.sankuai.domain.entity.Customer;
| import com.nova.sankuai.domain.entity.CustomerCapitalResultVm;
|
| /**
| * @author weikangdi
| * @create 2022/5/7
| */
| public interface ICustomerCapitalResultVmService extends IService<CustomerCapitalResultVm> {
| /**
| * 资方列表虚拟撞库
| *
| * @param customer 客户申请记录
| */
| void collisionlibrary(Customer customer);
| }
|
|