1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package org.jeecg.modules.mdcJc.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import javafx.concurrent.Service;
| import org.jeecg.modules.mdcJc.entity.MdcProductMonthlyschedule;
|
| /**
| * @author clown
| * * @date 2024/7/17
| */
| public interface IMdcProductMonthScheduleService extends IService<MdcProductMonthlyschedule> {
|
| /**
| * 当月零部件
| * @return
| */
| boolean scheduleProductMonthList();
| }
|
|