You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
658 B
24 lines
658 B
2 years ago
|
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);
|
||
|
|
||
|
}
|