李林
2024-01-08 7cf8ae446e880537a38bd7ac403bd53741a5294f
data-server/src/main/java/com/yuanchu/mom/service/DataReportingService.java
@@ -6,7 +6,9 @@
import com.yuanchu.mom.dto.RegistrantCountDto;
import com.yuanchu.mom.pojo.DataReporting;
import com.baomidou.mybatisplus.extension.service.IService;
import com.yuanchu.mom.pojo.FansSubmit;
import java.util.List;
import java.util.Map;
/**
@@ -16,7 +18,7 @@
*/
public interface DataReportingService extends IService<DataReporting> {
    Map<String, Object> selectUserList(IPage<DataReportingPageDto> page, DataReportingPageDto dataReportingPageDto);
    Map<String, Object> selectDataReportingList(IPage<DataReportingPageDto> page, DataReportingPageDto dataReportingPageDto);
    int updateDataReporting(DataReporting dataReporting);
@@ -24,4 +26,18 @@
    Map<String, Object> selectRegistrantCountDtoPageList(IPage<RegistrantCountDto> page, RegistrantCountDto registrantCountDto);
    Map<String, Object> getDataList();
    void addDataReporting(List<DataReporting> list, String date);
    Integer delDataReporting(Integer id);
    String downDataReportingFile(IPage<DataReportingPageDto> page, DataReportingPageDto dataReportingPageDto);
    String downProductCountFile(IPage<ProductCountDto> page, ProductCountDto productCountDto);
    String downRegistrantCountFile(IPage<RegistrantCountDto> page, RegistrantCountDto registrantCountDto);
    String downFansSubmitFile(IPage<FansSubmit> page, FansSubmit fansSubmit);
}