CouponGoodsDao.java 284 B

123456789101112131415
  1. package com.kmall.admin.dao;
  2. import com.kmall.admin.entity.CouponGoodsEntity;
  3. import com.kmall.common.dao.BaseDao;
  4. /**
  5. * 优惠券关联商品Dao
  6. *
  7. * @author Scott
  8. * @email
  9. * @date 2017-08-29 21:50:17
  10. */
  11. public interface CouponGoodsDao extends BaseDao<CouponGoodsEntity> {
  12. }