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/order/CommonOrderGoodsServiceImpl.java | 105 ++++++++++++++++++++++++++++------------------------ 1 files changed, 56 insertions(+), 49 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/order/CommonOrderGoodsServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/order/CommonOrderGoodsServiceImpl.java index c84e25a..2e779f3 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/impl/order/CommonOrderGoodsServiceImpl.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/order/CommonOrderGoodsServiceImpl.java @@ -1,49 +1,56 @@ -package com.yeshi.fanli.service.impl.order; - -import javax.annotation.Resource; - -import org.springframework.stereotype.Service; - -import com.yeshi.fanli.dao.mybatis.order.CommonOrderGoodsMapper; -import com.yeshi.fanli.entity.order.CommonOrderGoods; -import com.yeshi.fanli.service.inter.order.CommonOrderGoodsService; - - -@Service -public class CommonOrderGoodsServiceImpl implements CommonOrderGoodsService { - - @Resource - private CommonOrderGoodsMapper commonOrderGoodsMapper; - - - @Override - public int insert(CommonOrderGoods record) { - return commonOrderGoodsMapper.insert(record); - } - - @Override - public int insertSelective(CommonOrderGoods record) { - return commonOrderGoodsMapper.insertSelective(record); - } - - @Override - public int updateByPrimaryKeySelective(CommonOrderGoods record) { - return commonOrderGoodsMapper.updateByPrimaryKeySelective(record); - } - - @Override - public int updateByPrimaryKey(CommonOrderGoods record) { - return commonOrderGoodsMapper.updateByPrimaryKey(record); - } - - @Override - public int deleteByPrimaryKey(Long id) { - return commonOrderGoodsMapper.deleteByPrimaryKey(id); - } - - @Override - public CommonOrderGoods selectByPrimaryKey(Long id) { - return commonOrderGoodsMapper.selectByPrimaryKey(id); - } - -} +package com.yeshi.fanli.service.impl.order; + +import java.util.List; + +import javax.annotation.Resource; + +import org.springframework.stereotype.Service; + +import com.yeshi.fanli.dao.mybatis.order.CommonOrderGoodsMapper; +import com.yeshi.fanli.entity.order.CommonOrderGoods; +import com.yeshi.fanli.service.inter.order.CommonOrderGoodsService; + + +@Service +public class CommonOrderGoodsServiceImpl implements CommonOrderGoodsService { + + @Resource + private CommonOrderGoodsMapper commonOrderGoodsMapper; + + + @Override + public int insert(CommonOrderGoods record) { + return commonOrderGoodsMapper.insert(record); + } + + @Override + public int insertSelective(CommonOrderGoods record) { + return commonOrderGoodsMapper.insertSelective(record); + } + + @Override + public int updateByPrimaryKeySelective(CommonOrderGoods record) { + return commonOrderGoodsMapper.updateByPrimaryKeySelective(record); + } + + @Override + public int updateByPrimaryKey(CommonOrderGoods record) { + return commonOrderGoodsMapper.updateByPrimaryKey(record); + } + + @Override + public int deleteByPrimaryKey(Long id) { + return commonOrderGoodsMapper.deleteByPrimaryKey(id); + } + + @Override + public CommonOrderGoods selectByPrimaryKey(Long id) { + return commonOrderGoodsMapper.selectByPrimaryKey(id); + } + + @Override + public List<CommonOrderGoods> listByByPrimaryKeys(List<Long> idsList) { + return commonOrderGoodsMapper.listByByPrimaryKeys(idsList); + } + +} -- Gitblit v1.8.0