灌溉记录总计和充值记录总计接口添加角色隔离

This commit is contained in:
2025-01-02 16:48:03 +08:00
parent bc0d1f97dd
commit 1116dda1b7
4 changed files with 27 additions and 0 deletions

View File

@ -16,6 +16,13 @@ import com.fastbee.iot.domain.dto.NgFlowDeviceDataDto;
*/
public interface INgFlowDeviceDataService extends IService<NgFlowDeviceData>
{
/**
* 流量计瞬时流量和累计流量图表
* @param deviceNumber
* @param startTime
* @param endTime
* @return
*/
public Map<String,Object> selectNgFlowDeviceDataFlowCharts(String deviceNumber, Date startTime, Date endTime);
/**