From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 25 二月 2025 16:41:22 +0800 Subject: [PATCH] 淘宝转链接口更新 --- fanli/src/main/java/com/yeshi/fanli/service/impl/push/PushGoodsGroupServiceImpl.java | 176 +++++++++++++++++++++++++++++----------------------------- 1 files changed, 88 insertions(+), 88 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/push/PushGoodsGroupServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/push/PushGoodsGroupServiceImpl.java index 6196c9d..a5e86e3 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/impl/push/PushGoodsGroupServiceImpl.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/push/PushGoodsGroupServiceImpl.java @@ -1,88 +1,88 @@ -package com.yeshi.fanli.service.impl.push; - -import java.util.List; - -import javax.annotation.Resource; - -import org.springframework.stereotype.Service; - -import com.yeshi.fanli.dao.mybatis.push.PushGoodsGroupMapper; -import com.yeshi.fanli.entity.push.PushGoodsGroup; -import com.yeshi.fanli.exception.push.PushGoodsGroupException; -import com.yeshi.fanli.service.inter.push.PushGoodsGroupService; - -@Service -public class PushGoodsGroupServiceImpl implements PushGoodsGroupService { - - @Resource - private PushGoodsGroupMapper pushGoodsGroupMapper; - - - @Override - public int deleteByPrimaryKey(Long id) throws PushGoodsGroupException { - return pushGoodsGroupMapper.deleteByPrimaryKey(id); - } - - @Override - public int insert(PushGoodsGroup record) throws PushGoodsGroupException { - return pushGoodsGroupMapper.insert(record); - } - - @Override - public int insertSelective(PushGoodsGroup record) throws PushGoodsGroupException { - return pushGoodsGroupMapper.insertSelective(record); - } - - @Override - public PushGoodsGroup selectByPrimaryKey(Long id) throws PushGoodsGroupException { - return pushGoodsGroupMapper.selectByPrimaryKey(id); - } - - @Override - public int updateByPrimaryKeySelective(PushGoodsGroup record) throws PushGoodsGroupException { - return pushGoodsGroupMapper.updateByPrimaryKeySelective(record); - } - - @Override - public int updateByPrimaryKey(PushGoodsGroup record) throws PushGoodsGroupException { - return pushGoodsGroupMapper.updateByPrimaryKey(record); - } - - @Override - public int deleteByPushId(Long pushId) throws PushGoodsGroupException { - return pushGoodsGroupMapper.deleteByPushId(pushId); - } - - @Override - public int insertBatch(List<PushGoodsGroup> list) throws PushGoodsGroupException { - return pushGoodsGroupMapper.insertBatch(list); - } - - @Override - public List<PushGoodsGroup> selectByPushId(Long pushId) throws PushGoodsGroupException { - return pushGoodsGroupMapper.selectByPushId(pushId); - } - - @Override - public int deleteBatchByPrimaryKey(List<Long> list) throws PushGoodsGroupException { - return pushGoodsGroupMapper.deleteBatchByPrimaryKey(list); - } - - @Override - public int deleteBatchByPushId(List<Long> list) throws PushGoodsGroupException { - return pushGoodsGroupMapper.deleteBatchByPushId(list); - } - - @Override - public long countByPushId(Long pushId) { - return pushGoodsGroupMapper.countByPushId(pushId); - } - - @Override - public List<PushGoodsGroup> getAllInfoByPushId(Long pushId) throws PushGoodsGroupException { - return pushGoodsGroupMapper.getAllInfoByPushId(pushId); - } - - - -} +package com.yeshi.fanli.service.impl.push; + +import java.util.List; + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.yeshi.fanli.dao.mybatis.push.PushGoodsGroupMapper; +import com.yeshi.fanli.entity.push.PushGoodsGroup; +import com.yeshi.fanli.exception.push.PushGoodsGroupException; +import com.yeshi.fanli.service.inter.push.PushGoodsGroupService; + +@Service +public class PushGoodsGroupServiceImpl implements PushGoodsGroupService { + + @Resource + private PushGoodsGroupMapper pushGoodsGroupMapper; + + + @Override + public int deleteByPrimaryKey(Long id) throws PushGoodsGroupException { + return pushGoodsGroupMapper.deleteByPrimaryKey(id); + } + + @Override + public int insert(PushGoodsGroup record) throws PushGoodsGroupException { + return pushGoodsGroupMapper.insert(record); + } + + @Override + public int insertSelective(PushGoodsGroup record) throws PushGoodsGroupException { + return pushGoodsGroupMapper.insertSelective(record); + } + + @Override + public PushGoodsGroup selectByPrimaryKey(Long id) throws PushGoodsGroupException { + return pushGoodsGroupMapper.selectByPrimaryKey(id); + } + + @Override + public int updateByPrimaryKeySelective(PushGoodsGroup record) throws PushGoodsGroupException { + return pushGoodsGroupMapper.updateByPrimaryKeySelective(record); + } + + @Override + public int updateByPrimaryKey(PushGoodsGroup record) throws PushGoodsGroupException { + return pushGoodsGroupMapper.updateByPrimaryKey(record); + } + + @Override + public int deleteByPushId(Long pushId) throws PushGoodsGroupException { + return pushGoodsGroupMapper.deleteByPushId(pushId); + } + + @Override + public int insertBatch(List<PushGoodsGroup> list) throws PushGoodsGroupException { + return pushGoodsGroupMapper.insertBatch(list); + } + + @Override + public List<PushGoodsGroup> selectByPushId(Long pushId) throws PushGoodsGroupException { + return pushGoodsGroupMapper.selectByPushId(pushId); + } + + @Override + public int deleteBatchByPrimaryKey(List<Long> list) throws PushGoodsGroupException { + return pushGoodsGroupMapper.deleteBatchByPrimaryKey(list); + } + + @Override + public int deleteBatchByPushId(List<Long> list) throws PushGoodsGroupException { + return pushGoodsGroupMapper.deleteBatchByPushId(list); + } + + @Override + public long countByPushId(Long pushId) { + return pushGoodsGroupMapper.countByPushId(pushId); + } + + @Override + public List<PushGoodsGroup> getAllInfoByPushId(Long pushId) throws PushGoodsGroupException { + return pushGoodsGroupMapper.getAllInfoByPushId(pushId); + } + + + +} -- Gitblit v1.8.0