package com.thhy.materials.modules.biz.gpsdevice.mapper; import com.thhy.materials.modules.biz.gpsdevice.entity.GpsDevice; import com.thhy.materials.modules.biz.gpsdevice.entity.GpsDeviceDto; import com.thhy.materials.modules.biz.gpsdevice.entity.PipeOutInfo; import org.springframework.stereotype.Component; import java.io.Serializable; import java.util.List; /** * Mapper 接口 * @author zhang_xiao_bo * @since 2023-08-25 11:22:58 */ @Component public interface GpsDeviceMapper { GpsDevice queryById(Serializable gdId); Integer queryVersionById(Serializable gdId); List findList(GpsDevice gpsdevice); List findAll(GpsDeviceDto gpsDeviceDto); void insert(GpsDevice gpsdevice); void update(GpsDevice gpsdevice); void deletelogic(Serializable gdId); void deleteById(Serializable gdId); PipeOutInfo queryOut(String pipeOutId); }