1234567891011121314151617 |
- package com.kmall.api.dao;
- import com.kmall.api.entity.CommentPictureVo;
- import com.kmall.common.dao.BaseDao;
- import org.springframework.stereotype.Component;
- /**
- *
- *
- * @author Scott
- * @email
- * @date 2017-08-11 09:14:26
- */
- @Component
- public interface ApiCommentPictureMapper extends BaseDao<CommentPictureVo> {
-
- }
|