package com.ruoyi.system.service;
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.system.dto.AddScheduleDto;
|
import com.ruoyi.system.model.TbSchedule;
|
|
import javax.validation.Valid;
|
|
/**
|
* <p>
|
* 进度表 服务类
|
* </p>
|
*
|
* @author administrator
|
* @since 2025-05-27
|
*/
|
public interface TbScheduleService extends IService<TbSchedule> {
|
|
void addSchedule( AddScheduleDto dto,Long userId);
|
|
|
void buyerAddSchedule(AddScheduleDto dto,Long userId);
|
|
|
|
}
|