1
0

GoodsGalleryDao.java 390 B

12345678910111213141516171819
  1. package com.kmall.admin.dao;
  2. import com.kmall.admin.entity.GoodsGalleryEntity;
  3. import com.kmall.common.dao.BaseDao;
  4. import java.util.Map;
  5. /**
  6. * Dao
  7. *
  8. * @author Scott
  9. * @email
  10. * @date 2017-08-23 14:41:43
  11. */
  12. public interface GoodsGalleryDao extends BaseDao<GoodsGalleryEntity> {
  13. int deleteByGoodsId(Long goodsId);
  14. GoodsGalleryEntity queryVideoObjectByGoodId(Long goodId);
  15. }