Administrator
2018-11-30 1eedb9ac8c217ee2fd0b972367bdf8e37cda0865
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yeshi.fanli.dao.mybatis.goods;
 
import com.yeshi.fanli.goods.CollectionGoodsV2;
 
public interface CollectionGoodsV2Mapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(CollectionGoodsV2 record);
 
    int insertSelective(CollectionGoodsV2 record);
 
    CollectionGoodsV2 selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(CollectionGoodsV2 record);
 
    int updateByPrimaryKey(CollectionGoodsV2 record);
}