package com.gkhy.safePlatform.safeCheck.repository; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gkhy.safePlatform.safeCheck.entity.AbnormalWorkOrder; import com.gkhy.safePlatform.safeCheck.entity.GetLastWorkOrderSortDO; import com.gkhy.safePlatform.safeCheck.entity.SafeCheckPoint; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Repository; @Repository public interface AbnormalWorkOrderRepository extends BaseMapper { /** * 获取上一条工单顺序 */ @Autowired GetLastWorkOrderSortDO getLastWorkOrderSort(); }