You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
package com.gxwebsoft.tower.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
import com.gxwebsoft.tower.entity.TowerWorksheetCarDispatch;
|
|
import com.gxwebsoft.tower.param.TowerWorksheetCarDispatchParam;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 车辆调度Mapper
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2023-10-31 12:05:49
|
|
*/
|
|
public interface TowerWorksheetCarDispatchMapper extends BaseMapper<TowerWorksheetCarDispatch> {
|
|
|
|
/**
|
|
* 分页查询
|
|
*
|
|
* @param page 分页对象
|
|
* @param param 查询参数
|
|
* @return List<TowerWorksheetCarDispatch>
|
|
*/
|
|
List<TowerWorksheetCarDispatch> selectPageRel(@Param("page") IPage<TowerWorksheetCarDispatch> page,
|
|
@Param("param") TowerWorksheetCarDispatchParam param);
|
|
|
|
/**
|
|
* 查询全部
|
|
*
|
|
* @param param 查询参数
|
|
* @return List<User>
|
|
*/
|
|
List<TowerWorksheetCarDispatch> selectListRel(@Param("param") TowerWorksheetCarDispatchParam param);
|
|
|
|
}
|