Administrator
2018-12-18 d146e7bca73c7605af6b718b5df0b757e0034f0e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yeshi.fanli.dao.mybatis.goods;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.entity.goods.CommonGoods;
 
public interface CommonGoodsMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(CommonGoods record);
 
    int insertSelective(CommonGoods record);
 
    CommonGoods selectByPrimaryKey(Long id);
 
    CommonGoods selectByGoodsIdAndGoodsType(@Param("goodsId") Long goodsId, @Param("goodsType") int goodsType);
 
    int updateByPrimaryKeySelective(CommonGoods record);
 
    int updateByPrimaryKey(CommonGoods record);
}