Junjie
15 小时以前 8bfe1168a42d4e3750a15b0c0fb0a7629d6cf91c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.system.mapper;
 
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface LogCleanupMapper {
 
    int deleteExpiredBatch(@Param("table") String table,
                           @Param("timeColumn") String timeColumn,
                           @Param("expireDays") int expireDays,
                           @Param("limit") int limit);
}