package com.thhy.screen.modules.biz.agv.mapper; import com.thhy.screen.modules.biz.agv.entity.AgvStateHistory; import org.springframework.stereotype.Component; import java.io.Serializable; import java.util.List; /** * Mapper 接口 * @author zhang_xiao_bo * @since 2023-08-31 09:12:38 */ @Component public interface AgvStateHistoryMapper { AgvStateHistory queryById(Serializable id); Integer queryVersionById(Serializable id); List findList(AgvStateHistory agvstatehistory); List findAll(); List leastData(); void insert(AgvStateHistory agvstatehistory); void update(AgvStateHistory agvstatehistory); void deletelogic(Serializable id); void deleteById(Serializable id); }