李林
2024-01-08 7cf8ae446e880537a38bd7ac403bd53741a5294f
data-server/src/main/java/com/yuanchu/mom/service/DataReportingService.java
@@ -2,9 +2,13 @@
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.yuanchu.mom.dto.DataReportingPageDto;
import com.yuanchu.mom.dto.ProductCountDto;
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;
/**
@@ -14,8 +18,26 @@
*/
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);
    Map<String, Object> selectProductCountDtoPageList(IPage<ProductCountDto> page, ProductCountDto productCountDto);
    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);
}