You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
977 B
52 lines
977 B
package com.zc.business.service;
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.zc.business.domain.DcOperLog;
|
|
|
|
import java.util.List;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 调用功能记录Service接口
|
|
*
|
|
* @author zhaoxianglong
|
|
*/
|
|
public interface IDcOperLogService extends IService<DcOperLog> {
|
|
|
|
/**
|
|
* 添加信息
|
|
*
|
|
* @return 操作结果
|
|
*/
|
|
boolean addDcOperLog(DcOperLog dcOperLog);
|
|
|
|
/**
|
|
* 修改信息
|
|
*
|
|
* @return 操作结果
|
|
*/
|
|
boolean editDcOperLog(DcOperLog dcOperLog);
|
|
|
|
/**
|
|
* 删除
|
|
*
|
|
* @return 操作结果
|
|
*/
|
|
boolean removeDcOperLog(List<String> ids);
|
|
|
|
/**
|
|
* 获取列表
|
|
*
|
|
* @return 结果
|
|
*/
|
|
List<DcOperLog> pageDcOperLog(DcOperLog dcOperLog, Date endTime, Date startTime);
|
|
|
|
/**
|
|
* 获取列表
|
|
*
|
|
* @return 结果
|
|
*/
|
|
List<DcOperLog> listDcOperLog(DcOperLog dcOperLog,Date endTime,Date startTime);
|
|
|
|
}
|
|
|