| 12345678910111213141516171819 |
- package com.fdkankan.external.service;
- import com.fdkankan.external.entity.ZgxxzxPushLog;
- import com.fdkankan.external.request.TaskPageRequest;
- import com.fdkankan.external.response.PageInfo;
- import org.springframework.web.multipart.MultipartFile;
- import java.io.IOException;
- public interface XinxizhongxinService {
- void importExcel(MultipartFile file) throws IOException;
- PageInfo<ZgxxzxPushLog> taskList(TaskPageRequest request);
- void pushScene();
- void syncPushResult();
- }
|