123456789101112 |
- package com.huaxu.service;
- import com.huaxu.dto.generalView.DeviceWaterSupply;
- import java.util.List;
- public interface AppPageReportService {
- List<DeviceWaterSupply> deviceWaterReportForMonth(Integer companyOrgId, String sceneType, Integer parmType, Integer month);
- List<DeviceWaterSupply> deviceSellerWaterReportForMonth(Integer companyOrgId,Integer month);
- }
|