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/PushCouponRecordServiceImpl.java | 122 ++++++++++++++++++++-------------------- 1 files changed, 61 insertions(+), 61 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/impl/push/PushCouponRecordServiceImpl.java b/fanli/src/main/java/com/yeshi/fanli/service/impl/push/PushCouponRecordServiceImpl.java index c2c28c5..42c4c31 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/impl/push/PushCouponRecordServiceImpl.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/impl/push/PushCouponRecordServiceImpl.java @@ -1,61 +1,61 @@ -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.PushCouponRecordMapper; -import com.yeshi.fanli.entity.push.PushCouponRecord; -import com.yeshi.fanli.service.inter.push.PushCouponRecordService; - -@Service -public class PushCouponRecordServiceImpl implements PushCouponRecordService { - - - @Resource - private PushCouponRecordMapper pushCouponRecordMapper; - - @Override - public int deleteByPrimaryKey(Long id) { - return pushCouponRecordMapper.deleteByPrimaryKey(id); - } - - @Override - public int insert(PushCouponRecord record) { - return pushCouponRecordMapper.insert(record); - } - - @Override - public int insertSelective(PushCouponRecord record) throws Exception{ - return pushCouponRecordMapper.insertSelective(record); - } - - @Override - public PushCouponRecord selectByPrimaryKey(Long id) { - return pushCouponRecordMapper.selectByPrimaryKey(id); - } - - @Override - public int updateByPrimaryKeySelective(PushCouponRecord record) { - return pushCouponRecordMapper.updateByPrimaryKeySelective(record); - } - - @Override - public int updateByPrimaryKey(PushCouponRecord record) { - return pushCouponRecordMapper.updateByPrimaryKey(record); - } - - @Override - public long countByPushId(Long pushId) { - return pushCouponRecordMapper.countByPushId(pushId); - } - - @Override - public List<PushCouponRecord> listByUid(Long uid) { - return pushCouponRecordMapper.listByUid(uid); - } - - -} +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.PushCouponRecordMapper; +import com.yeshi.fanli.entity.push.PushCouponRecord; +import com.yeshi.fanli.service.inter.push.PushCouponRecordService; + +@Service +public class PushCouponRecordServiceImpl implements PushCouponRecordService { + + + @Resource + private PushCouponRecordMapper pushCouponRecordMapper; + + @Override + public int deleteByPrimaryKey(Long id) { + return pushCouponRecordMapper.deleteByPrimaryKey(id); + } + + @Override + public int insert(PushCouponRecord record) { + return pushCouponRecordMapper.insert(record); + } + + @Override + public int insertSelective(PushCouponRecord record) throws Exception{ + return pushCouponRecordMapper.insertSelective(record); + } + + @Override + public PushCouponRecord selectByPrimaryKey(Long id) { + return pushCouponRecordMapper.selectByPrimaryKey(id); + } + + @Override + public int updateByPrimaryKeySelective(PushCouponRecord record) { + return pushCouponRecordMapper.updateByPrimaryKeySelective(record); + } + + @Override + public int updateByPrimaryKey(PushCouponRecord record) { + return pushCouponRecordMapper.updateByPrimaryKey(record); + } + + @Override + public long countByPushId(Long pushId) { + return pushCouponRecordMapper.countByPushId(pushId); + } + + @Override + public List<PushCouponRecord> listByUid(Long uid) { + return pushCouponRecordMapper.listByUid(uid); + } + + +} -- Gitblit v1.8.0