李林
2024-01-02 ce97969fce786a9a1dc0bc18acad6261bee73a21
data-server/src/main/java/com/yuanchu/mom/service/DataReportingService.java
@@ -7,6 +7,7 @@
import com.yuanchu.mom.pojo.DataReporting;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
import java.util.Map;
/**
@@ -16,7 +17,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 +25,12 @@
    Map<String, Object> selectRegistrantCountDtoPageList(IPage<RegistrantCountDto> page, RegistrantCountDto registrantCountDto);
    Map<String, Object> getDataList();
    void addDataReporting(List<DataReporting> list);
    Integer delDataReporting(Integer id);
    String downDataReportingFile(IPage<DataReportingPageDto> page, DataReportingPageDto dataReportingPageDto);
}