liujie
2025-05-28 1a4e7bbab3d15b36ebb4d7329ee31de62f092eb6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
 
 
 
}