1
0

MallStoreGoodsGalleryMapper.java 291 B

12345678910
  1. package com.kmall.api.dao;
  2. import com.kmall.api.entity.AddressVo;
  3. import com.kmall.api.entity.MallStoreGoodsGallery;
  4. import com.kmall.common.dao.BaseDao;
  5. public interface MallStoreGoodsGalleryMapper extends BaseDao<AddressVo> {
  6. MallStoreGoodsGallery selectByPrimaryKey(Integer id);
  7. }