shiyunteng
2025-04-08 608f0d2c05d86510d546a362e44c10feb601b3f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
 
    List<Device> getDropdownnByWinningId(@Param("id") Long id);
}