DriverSchedulingExpandSmartMapper.java 664 Bytes
package com.ruoyi.mapper;

import com.ruoyi.domain.DriverSchedulingExpandSmart;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.pojo.vo.SmartExpandVo;
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
* @author 20412
* @description 针对表【driver_scheduling_expand_smart(灵活跟班表)】的数据库操作Mapper
* @createDate 2024-03-07 16:49:40
* @Entity .domain.DriverSchedulingExpandSmart
*/
public interface DriverSchedulingExpandSmartMapper extends BaseMapper<DriverSchedulingExpandSmart> {

    SmartExpandVo querySmartExpand(@Param("id") Long id);

    List<SmartExpandVo> querySmartExpandAll();
}