1
0

GoodsAttributeDao.java 470 B

12345678910111213141516171819202122
  1. package com.kmall.admin.dao;
  2. import com.kmall.admin.entity.GoodsAttributeEntity;
  3. import com.kmall.manager.dao.BaseDao;
  4. /**
  5. * @author Scott
  6. * @email
  7. * @date 2017-08-13 10:41:08
  8. */
  9. public interface GoodsAttributeDao extends BaseDao<GoodsAttributeEntity> {
  10. int updateByGoodsIdAttributeId(GoodsAttributeEntity goodsAttributeEntity);
  11. /**
  12. * 根据商品ID删除
  13. *
  14. * @param goodsId
  15. * @return
  16. */
  17. int deleteByGoodsId(Long goodsId);
  18. }