admin
2019-11-01 56bcbcf230f4ce53376c7ccc99b91990d3375f9d
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.service.impl.shop;
 
import javax.annotation.Resource;
 
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.dao.mybatis.shop.BanLiShopGoodsClassMapper;
import com.yeshi.fanli.entity.shop.BanLiShopGoodsClass;
import com.yeshi.fanli.service.inter.shop.BanLiShopGoodsClassService;
 
@Service
public class BanLiShopGoodsClassServiceImpl implements BanLiShopGoodsClassService {
 
    @Resource
    private BanLiShopGoodsClassMapper banLiShopGoodsClassMapper;
 
    @Override
    public BanLiShopGoodsClass selectByPrimaryKey(Long id) {
        return banLiShopGoodsClassMapper.selectByPrimaryKey(id);
    }
 
}