提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.sche.service; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.PageResult; |
|
4 |
import com.iailab.module.model.mcs.sche.entity.StScheduleModelEntity; |
bbc1ee
|
5 |
import com.iailab.module.model.mcs.sche.vo.StScheduleModelPageReqVO; |
潘 |
6 |
import com.iailab.module.model.mcs.sche.vo.StScheduleModelSaveReqVO; |
7fd198
|
7 |
|
056470
|
8 |
import java.util.List; |
潘 |
9 |
|
7fd198
|
10 |
/** |
潘 |
11 |
* @author PanZhibao |
|
12 |
* @date 2021年07月20日 14:13 |
|
13 |
*/ |
b425df
|
14 |
public interface StScheduleModelService { |
7fd198
|
15 |
|
bbc1ee
|
16 |
PageResult<StScheduleModelEntity> page(StScheduleModelPageReqVO reqVO); |
7fd198
|
17 |
|
056470
|
18 |
List<StScheduleModelEntity> list(); |
潘 |
19 |
|
bbc1ee
|
20 |
void create(StScheduleModelSaveReqVO reqVO); |
7fd198
|
21 |
|
bbc1ee
|
22 |
void update(StScheduleModelSaveReqVO reqVO); |
7fd198
|
23 |
|
bbc1ee
|
24 |
StScheduleModelEntity get(String id); |
7fd198
|
25 |
|
bbc1ee
|
26 |
void delete(String id); |
7fd198
|
27 |
|
bbc1ee
|
28 |
Long check(StScheduleModelSaveReqVO reqVO); |
7fd198
|
29 |
|
潘 |
30 |
Long count(); |
e9506a
|
31 |
|
J |
32 |
StScheduleModelEntity getByModelCode(String modelCode); |
7fd198
|
33 |
} |