AdoptMessageService.java
453 Bytes
package com.diligrp.tax.adopt.service;
import com.diligrp.tax.adopt.model.ReceiveMessageCO;
import org.springframework.web.multipart.MultipartFile;
/**
* @author lvqi
*/
public interface AdoptMessageService {
/**
* @param receiveMessageCO 接收消息
*/
void convertMessage(ReceiveMessageCO receiveMessageCO);
/**
* 完全同步客户
*
* @param file
*/
void fullySyncCustomer(MultipartFile file);
}