yujian
2019-11-05 a980ade25b3dc1a7da482e37113f2935a2719c0b
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);
    }
 
}