package com.psdc.mapper; import com.psdc.entity.PsdcDevicePowerHdata96; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; /** * @Author:戴仕崑 * @Project:psdc * @Filename:PsdcDevicePowerHdata96Mapper * @Date:2023/5/9 16:27 * @Version 1.0 */ @Mapper @Repository public interface PsdcDevicePowerHdata96Mapper { PsdcDevicePowerHdata96 queryById(@Param(value = "userId") Long userId, @Param(value = "deviceId") Integer deviceId, @Param(value = "samDate") String samDate); }