kongdeqiang
2025-03-31 110c67264a45e72b763681bf3d7721e16758c55f
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);
}