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); }