You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
388 B
Java
15 lines
388 B
Java
package com.glxp.api.dao.system;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.glxp.api.entity.system.SysErpLogEntity;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
public interface SysErpLogDao extends BaseMapper<SysErpLogEntity> {
|
|
|
|
/**
|
|
* 根据时间删除日志
|
|
*
|
|
* @param date 日期
|
|
*/
|
|
void deleteByDate(@Param("date") String date);
|
|
} |