潘志宝
2024-09-09 bbc1eeba9c29032add5175f2739782fd204de715
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
28
package com.iailab.module.model.mcs.sche.service;
 
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.framework.common.service.BaseService;
import com.iailab.module.model.mcs.sche.entity.StScheduleModelEntity;
import com.iailab.module.model.mcs.sche.vo.StScheduleModelPageReqVO;
import com.iailab.module.model.mcs.sche.vo.StScheduleModelSaveReqVO;
 
/**
 * @author PanZhibao
 * @date 2021年07月20日 14:13
 */
public interface StScheduleModelService extends BaseService<StScheduleModelEntity> {
 
    PageResult<StScheduleModelEntity> page(StScheduleModelPageReqVO reqVO);
 
    void create(StScheduleModelSaveReqVO reqVO);
 
    void update(StScheduleModelSaveReqVO reqVO);
 
    StScheduleModelEntity get(String id);
 
    void delete(String id);
 
    Long check(StScheduleModelSaveReqVO reqVO);
 
    Long count();
}