| | |
| | | import com.oying.modules.pc.store.domain.StoreAudit; |
| | | import com.oying.modules.pc.store.domain.dto.StoreAuditQueryCriteria; |
| | | import java.util.List; |
| | | |
| | | import com.oying.modules.pc.store.view.StoreAuditView; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | |
| | | @Mapper |
| | | public interface StoreAuditMapper extends BaseMapper<StoreAudit> { |
| | | |
| | | IPage<StoreAudit> findAll(@Param("criteria") StoreAuditQueryCriteria criteria, Page<Object> page); |
| | | IPage<StoreAuditView> findAll(@Param("criteria") StoreAuditQueryCriteria criteria, Page<Object> page); |
| | | |
| | | List<StoreAudit> findAll(@Param("criteria") StoreAuditQueryCriteria criteria); |
| | | List<StoreAuditView> findAll(@Param("criteria") StoreAuditQueryCriteria criteria); |
| | | } |