package com.thhy.mobile.modules.biz.cultivated.service;
|
|
import com.thhy.mobile.modules.biz.cultivated.entity.*;
|
|
import java.io.Serializable;
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* 服务类
|
* @author zhang_xiao_bo
|
* @since 2023-05-11 14:45:24
|
*/
|
public interface WaterCultivatedService {
|
|
WaterCultivated get(Serializable id);
|
|
List<CulListVo> findList(WaterCultivated waterCultivated);
|
|
List<CulListVo> screenFindList(String token);
|
|
void addWaterCultivated(CulDeviceDto culDeviceDto);
|
|
void update(WaterCultivated waterCultivated);
|
|
void delete(String waterCultivatedId);
|
|
List<CulPullDownVo> pulldown(WaterCultivated waterCultivated);
|
|
List<DevicePullDownVo> waterDeviceList(CulDeviceDto culDeviceDto);
|
|
Map<String , Object> getH5WaterRecord(String pipeId);
|
}
|