| | |
| | | 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); |
| | | } |