shiyunteng
2025-04-02 d9d8b1eb440d455252e9859b2294b8a55366baba
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);
}