| 1234567891011121314151617 |
- package com.study.mall.dao;
- import com.study.mall.entity.UserGoodsCollectEntity;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * 用户商品收藏
- *
- * @author codingliang
- * @email codingliang@gmail.com
- * @date 2023-09-01 09:43:35
- */
- @Mapper
- public interface UserGoodsCollectDao extends BaseMapper<UserGoodsCollectEntity> {
-
- }
|