1234567891011121314151617 |
- package com.kmall.api.dao;
- import com.kmall.common.dao.BaseDao;
- import com.kmall.common.utils.pingan.dto.PinganResponseDto;
- import org.springframework.stereotype.Component;
- /**
- * Dao
- *
- * @author emato
- * @email admin@qhdswl.com
- * @date 2018-12-06 15:29:43
- */
- @Component
- public interface ApiPinganResponseMapper extends BaseDao<PinganResponseDto> {
- }
|