ShyLogService.java 530 Bytes
package com.cnlive.shenhe.service;

import com.cnlive.shenhe.dto.ShyLogDTO;
import com.cnlive.shenhe.entity.ShyLog;
import com.github.pagehelper.PageInfo;

/**
 * @Author: yan-zhao-wang
 * @DateTime: 2022-11-03 15:03
 */
public interface ShyLogService {
    /**
     * 查询所有的日志
     *
     * @param shyLogDTO
     * @return
     */
    PageInfo<ShyLog> selectByExample(ShyLogDTO shyLogDTO);

    /**
     * 添加日志记录
     *
     * @param shyLog
     * @return
     */
    Boolean addShyLog(ShyLog shyLog);
}