jiangping
2024-07-12 de70d21d8dea3e8ae972722456e3e8223a798ae5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.doumee.biz.zbom;
 
import com.doumee.biz.zbom.model.CrmCustomerSubmmitModel;
import com.doumee.biz.zbom.model.IamUpateShopModel;
import com.doumee.biz.zbom.model.IamUpateUserModel;
import com.doumee.dao.business.model.CustomerLog;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * 志邦CRM对接业务接口
 * @author 江蹄蹄
 * @date 2023/11/30 15:33
 */
@Service
public interface ZbomCRMService {
 
    void dealCustomerLogData(CustomerLog customerLog);
 
    int postDataToCrm(CrmCustomerSubmmitModel entity );
}