AppPageReportService.java 374 B

123456789101112
  1. package com.huaxu.service;
  2. import com.huaxu.dto.generalView.DeviceWaterSupply;
  3. import java.util.List;
  4. public interface AppPageReportService {
  5. List<DeviceWaterSupply> deviceWaterReportForMonth(Integer companyOrgId, String sceneType, Integer parmType, Integer month);
  6. List<DeviceWaterSupply> deviceSellerWaterReportForMonth(Integer companyOrgId,Integer month);
  7. }