package api.dao; import api.bean.PoleSensorV2SoilVOEntity; import api.bean.PoleSensorV2VOEntity; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; import java.util.List; /** * 耕农 北理工 **/ @Mapper @Repository public interface WeatherV2Dao { List selectAll(); List selectByCompany(Long userId); List selectByUserId(Long userId); List getSensorByPoleId(Long poleId); List selectAllForSoil(); List selectByCompanyForSoil(Long userId); List selectByUserIdForSoil(Long userId); List getSensorByMac(String mac); }