package com.iailab.module.mcs.service;
|
|
import com.iailab.framework.common.page.PageData;
|
import com.iailab.framework.common.service.CrudService;
|
import com.iailab.module.mcs.dto.StModelRunlogDTO;
|
import com.iailab.module.mcs.entity.StModelRunlogEntity;
|
|
import java.util.Date;
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* 运行日志表
|
*
|
* @author lirm ${email}
|
* @since 1.0.0 2023-06-21
|
*/
|
public interface StModelRunlogService extends CrudService<StModelRunlogEntity, StModelRunlogDTO> {
|
|
List<StModelRunlogDTO> getLastFxLog(Integer limit);
|
|
List<StModelRunlogDTO> getLastJyLog(Integer limit);
|
|
void cleanRunlogTask(Map<String, Date> tMap);
|
|
PageData<StModelRunlogDTO> queryPage(Map<String, Object> params);
|
|
List<StModelRunlogDTO> listAll(Map<String, Object> params);
|
|
void add(StModelRunlogDTO dto);
|
|
void migrationModelRunlog(Map<String, Date> tMap);
|
}
|