22 lines
606 B
Java
22 lines
606 B
Java
package net.srt.service;
|
|
|
|
import net.srt.entity.DataServiceApiLogEntity;
|
|
import net.srt.framework.common.page.PageResult;
|
|
import net.srt.framework.mybatis.service.BaseService;
|
|
import net.srt.query.DataServiceApiLogQuery;
|
|
import net.srt.vo.DataServiceApiLogVo;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @ClassName : DataServiceApiLogService
|
|
* @Description :
|
|
* @Author : FJJ
|
|
* @Date: 2023-12-25 11:31
|
|
*/
|
|
public interface DataServiceApiLogService extends BaseService<DataServiceApiLogEntity> {
|
|
PageResult<DataServiceApiLogVo> dataPageList(DataServiceApiLogQuery query);
|
|
|
|
void removeId(List<Long> idList);
|
|
}
|