You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
490 B
22 lines
490 B
|
3 years ago
|
package com.cyl.ums.mapper;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
import com.cyl.ums.domain.MemberCart;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 购物车Mapper接口
|
||
|
|
*
|
||
|
|
* @author zcc
|
||
|
|
*/
|
||
|
|
public interface MemberCartMapper extends BaseMapper<MemberCart> {
|
||
|
|
/**
|
||
|
|
* 查询购物车列表
|
||
|
|
*
|
||
|
|
* @param memberCart 购物车
|
||
|
|
* @return 购物车集合
|
||
|
|
*/
|
||
|
|
List<MemberCart> selectByEntity(MemberCart memberCart);
|
||
|
|
}
|