package com.xzx.gc.user.mapper;
|
|
import com.xzx.gc.entity.UserScrapStore;
|
import com.xzx.gc.model.user.UserScrapStoreListParamDTO;
|
import com.xzx.gc.util.GcMapper;
|
|
import java.util.List;
|
|
public interface UserScrapStoreMapper extends GcMapper<UserScrapStore> {
|
List<UserScrapStore> list(UserScrapStoreListParamDTO userScrapStoreListParamDTO);
|
}
|