12345678910111213141516171819 |
- package com.kmall.admin.dao;
- import com.kmall.admin.entity.GoodsGalleryEntity;
- import com.kmall.common.dao.BaseDao;
- import java.util.Map;
- /**
- * Dao
- *
- * @author Scott
- * @email
- * @date 2017-08-23 14:41:43
- */
- public interface GoodsGalleryDao extends BaseDao<GoodsGalleryEntity> {
- int deleteByGoodsId(Long goodsId);
- GoodsGalleryEntity queryVideoObjectByGoodId(Long goodId);
- }
|