LogMapper.java 367 B

123456789101112131415161718
  1. package com.xjrsoft.module.system.mapper;
  2. import com.xjrsoft.module.system.entity.Log;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * <p>
  7. * 系统日志表 Mapper 接口
  8. * </p>
  9. *
  10. * @author tzx
  11. * @since 2022-03-04
  12. */
  13. @Mapper
  14. public interface LogMapper extends BaseMapper<Log> {
  15. }