1
0

ApiUserCollectionMapper.java 280 B

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