package com.mes.bigstoragetask.mapper;
|
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
import com.github.yulichang.base.MPJBaseMapper;
|
import com.mes.bigstorage.entity.BigStorageDTO;
|
import com.mes.bigstoragetask.entity.BigStorageCageFeedTask;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author zhoush
|
* @since 2024-04-16
|
*/
|
@DS("salve_hangzhoumes_1")
|
public interface BigStorageCageFeedTaskMapper extends MPJBaseMapper<BigStorageCageFeedTask> {
|
|
List<Integer> querySitToUpGlass();
|
|
BigStorageDTO querySitToUpRemainWidth(@Param(value = "line") Integer line);
|
}
|