AuditLogMapper.java 346 B

1234567891011121314
  1. package com.gis.mapper;
  2. import com.gis.common.admin.mapper.IBaseMapper;
  3. import com.gis.domain.po.AuditLogEntity;
  4. import com.gis.domain.po.MartyrEntity;
  5. import org.apache.ibatis.annotations.Mapper;
  6. import org.springframework.stereotype.Component;
  7. @Component
  8. @Mapper
  9. public interface AuditLogMapper extends IBaseMapper<AuditLogEntity, Long> {
  10. }