DriverSchedulingExpandSmartService.java
683 Bytes
package com.ruoyi.service;
import com.ruoyi.domain.DriverSchedulingExpandSmart;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.pojo.dto.SmartExpandDto;
import com.ruoyi.pojo.vo.SmartExpandVo;
/**
* @author 20412
* @description 针对表【driver_scheduling_expand_smart(灵活跟班表)】的数据库操作Service
* @createDate 2024-03-07 16:49:40
*/
public interface DriverSchedulingExpandSmartService extends IService<DriverSchedulingExpandSmart> {
void smartAdd(SmartExpandDto dto);
void computedExpand();
SmartExpandVo querySmartExpand(Long id);
void updateSmartExpand(SmartExpandVo vo);
void deleteExpand(Long[] ids);
}