shiyunteng
2025-03-27 a7ad35b3e20867204cda9faa7bdf8a686264e906
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.by4cloud.platformx.device.mapper;
 
import com.by4cloud.platformx.common.data.datascope.PlatformxBaseMapper;
import com.by4cloud.platformx.device.entity.Device;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
@Mapper
public interface DeviceMapper extends PlatformxBaseMapper<Device> {
 
 
    List<Device> getDeviceSelectListByLedgerId(@Param("ledgerId") Long ledgerId);
 
    List<Device> getDeviceListByContractId(@Param("contractId")Long contractId);
}