添加购物车表

This commit is contained in:
zhh
2018-08-02 09:38:28 +08:00
parent 983293ff48
commit 96fc2c6d52
7 changed files with 5384 additions and 2523 deletions

View File

@@ -0,0 +1,30 @@
package com.macro.mall.mapper;
import com.macro.mall.model.OmsCartItem;
import com.macro.mall.model.OmsCartItemExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface OmsCartItemMapper {
int countByExample(OmsCartItemExample example);
int deleteByExample(OmsCartItemExample example);
int deleteByPrimaryKey(Long id);
int insert(OmsCartItem record);
int insertSelective(OmsCartItem record);
List<OmsCartItem> selectByExample(OmsCartItemExample example);
OmsCartItem selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") OmsCartItem record, @Param("example") OmsCartItemExample example);
int updateByExample(@Param("record") OmsCartItem record, @Param("example") OmsCartItemExample example);
int updateByPrimaryKeySelective(OmsCartItem record);
int updateByPrimaryKey(OmsCartItem record);
}