| | |
| | | package com.yeshi.fanli.service.impl.goods;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import javax.annotation.Resource;
|
| | |
|
| | | import org.springframework.stereotype.Service;
|
| | |
| | | import com.yeshi.fanli.dao.mybatis.TaoBaoClassRelationMapper;
|
| | | import com.yeshi.fanli.entity.bus.clazz.TaoBaoClassRelation;
|
| | | import com.yeshi.fanli.service.inter.goods.TaoBaoClassRelationService;
|
| | | import com.yeshi.fanli.service.inter.goods.TaoBaoClassService;
|
| | |
|
| | | @Service
|
| | | public class TaoBaoClassRelationServiceImpl implements TaoBaoClassRelationService {
|
| | |
|
| | | @Resource
|
| | | private TaoBaoClassRelationMapper taoBaoClassRelationMapper;
|
| | | |
| | |
|
| | | @Override
|
| | | public int deleteByPrimaryKey(Long id) {
|
| | | // TODO Auto-generated method stub
|
| | | return taoBaoClassRelationMapper.deleteByPrimaryKey(id);
|
| | | }
|
| | |
|
| | | @Override
|
| | | public int insert(TaoBaoClassRelation record) {
|
| | | // TODO Auto-generated method stub
|
| | | return taoBaoClassRelationMapper.insert(record);
|
| | | }
|
| | |
|
| | | @Override
|
| | | public int insertSelective(TaoBaoClassRelation record) {
|
| | | // TODO Auto-generated method stub
|
| | | return taoBaoClassRelationMapper.insertSelective(record);
|
| | | }
|
| | |
|
| | | @Override
|
| | | public TaoBaoClassRelation selectByPrimaryKey(Long id) {
|
| | | // TODO Auto-generated method stub
|
| | | return taoBaoClassRelationMapper.selectByPrimaryKey(id);
|
| | | }
|
| | |
|
| | | @Override
|
| | | public int updateByPrimaryKeySelective(TaoBaoClassRelation record) {
|
| | | // TODO Auto-generated method stub
|
| | | return taoBaoClassRelationMapper.updateByPrimaryKeySelective(record);
|
| | | }
|
| | |
|
| | | @Override
|
| | | public int updateByPrimaryKey(TaoBaoClassRelation record) {
|
| | | // TODO Auto-generated method stub
|
| | | return taoBaoClassRelationMapper.updateByPrimaryKey(record);
|
| | | }
|
| | |
|
| | |
|
| | | }
|