diff --git a/mallinkService/src/main/java/com/iformall/service/WxCouponChannelService.java b/mallinkService/src/main/java/com/iformall/service/WxCouponChannelService.java index 66055f162..28d030b91 100644 --- a/mallinkService/src/main/java/com/iformall/service/WxCouponChannelService.java +++ b/mallinkService/src/main/java/com/iformall/service/WxCouponChannelService.java @@ -67,13 +67,6 @@ public interface WxCouponChannelService { */ ResultData saveOrUpdate(WxCouponChannel record); - /** - * 根据Id删除实体 - * - * @param id - */ - void deleteById(Long id); - ResultData addBatch(String[] ids, String[] channelId, String tanantId, Date beginTime, Date endTime); void updateStatusByCouponId(Long couponId,String tenantId,int status); diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxCouponChannelServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxCouponChannelServiceImpl.java index 7bcfe1a8f..c134311ce 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxCouponChannelServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxCouponChannelServiceImpl.java @@ -108,11 +108,6 @@ public class WxCouponChannelServiceImpl implements WxCouponChannelService { return new ResultData(); } - @Override - public void deleteById(Long id) { - wxCouponChannelMapper.deleteByPrimaryKey(id); - } - @Override public ResultData addBatch(String[] ids, String[] channelId, String tanantId, Date beginTime, Date endTime) {