| | |
| | | |
| | | import com.iailab.framework.common.service.BaseService; |
| | | import com.iailab.module.model.mcs.sche.entity.StSuggestSnapshotRecordEntity; |
| | | import com.iailab.module.model.api.mcs.dto.StSuggestSnapshotRecordRespVO; |
| | | import com.iailab.module.model.mcs.sche.vo.StSuggestSnapshotRecordSaveReqVO; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author Jay |
| | | */ |
| | | public interface StSuggestSnapshotRecordService extends BaseService<StSuggestSnapshotRecordEntity> { |
| | | |
| | | void create(StSuggestSnapshotRecordSaveReqVO createReqVO); |
| | | |
| | | void update(StSuggestSnapshotRecordSaveReqVO createReqVO); |
| | | |
| | | void delete(String id); |
| | | |
| | | List<StSuggestSnapshotRecordRespVO> getListBySuggestId(String suggestId); |
| | | |
| | | void createSnapshotRecord(String modelId, String scheduleObj, Date scheduleTime, String suggestId); |
| | | |
| | | List<StSuggestSnapshotRecordRespVO> getChartData(List<StSuggestSnapshotRecordRespVO> reqList); |
| | | |
| | | List<StSuggestSnapshotRecordRespVO> getAllChartData(String suggestId); |
| | | } |