潘志宝
2025-06-11 e7a52d9e21eddb8ff94fb2b0ac95e4d7da541ed2
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
29
30
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.StSuggestSnapshotConfDetEntity;
import com.iailab.module.model.mcs.sche.vo.StSuggestSnapshotConfDetPageReqVO;
import com.iailab.module.model.mcs.sche.vo.StSuggestSnapshotConfDetRespVO;
import com.iailab.module.model.api.mcs.dto.StSuggestSnapshotConfDetSaveReqVO;
 
import java.util.List;
 
 
/**
 * @author Jay
 */
public interface StSuggestSnapshotConfDetService extends BaseService<StSuggestSnapshotConfDetEntity> {
    PageResult<StSuggestSnapshotConfDetEntity> page(StSuggestSnapshotConfDetPageReqVO reqVO);
 
    void create(StSuggestSnapshotConfDetSaveReqVO createReqVO);
 
    void update(StSuggestSnapshotConfDetSaveReqVO createReqVO);
 
    void delete(String id);
 
    List<StSuggestSnapshotConfDetRespVO> getByConfId(String confId);
 
    StSuggestSnapshotConfDetRespVO get(String id);
 
    Boolean updateByExt1(StSuggestSnapshotConfDetSaveReqVO updateReqVO);
}