1d313c87f8bbc00a6a6ba4d4dd53abd2e70fc225.svn-base 419 B

1234567891011121314151617
  1. package org.jeecg.modules.base.mapper;
  2. import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
  3. import org.apache.ibatis.annotations.Param;
  4. import org.jeecg.common.api.dto.LogDTO;
  5. public interface BaseCommonMapper {
  6. /**
  7. * 保存日志
  8. * @param dto
  9. */
  10. //@SqlParser(filter=true)
  11. @InterceptorIgnore(illegalSql = "true", tenantLine = "true")
  12. void saveLog(@Param("dto")LogDTO dto);
  13. }