1234567891011121314 |
- package com.gis.mapper;
- import com.gis.common.admin.mapper.IBaseMapper;
- import com.gis.domain.po.AuditLogEntity;
- import com.gis.domain.po.MartyrEntity;
- import org.apache.ibatis.annotations.Mapper;
- import org.springframework.stereotype.Component;
- @Component
- @Mapper
- public interface AuditLogMapper extends IBaseMapper<AuditLogEntity, Long> {
- }
|