package com.bizmatics.persistence.mapper; import com.bizmatics.model.RtAnalogData; import com.bizmatics.common.mvc.base.CrudMapper; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; /** *

* Mapper 接口 *

* * @author ya * @since 2021-07-07 */ @Repository public interface RtAnalogDataMapper extends CrudMapper { /** * 查询电力总负荷 * @param userId * @param siteId * @return */ Double selectTotalLoad(@Param("userId") Integer userId, @Param("siteId") Integer siteId); }