From 615b2b7b2efabef050e7857a9a11ad59af80873e Mon Sep 17 00:00:00 2001 From: Guoqs <123@jsowell.com> Date: Wed, 15 Jan 2025 14:42:37 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E8=AE=A2=E5=8D=95=E5=88=86=E8=B4=A6?= =?UTF-8?q?=E8=AE=B0=E5=BD=95Service=20=E5=88=A0=E9=99=A4=E6=96=B9?= =?UTF-8?q?=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pile/service/OrderSplitRecordService.java | 14 ++--- .../impl/OrderSplitRecordServiceImpl.java | 56 +++++++++---------- 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/OrderSplitRecordService.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/OrderSplitRecordService.java index 09a300a49..5ea00f347 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/OrderSplitRecordService.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/OrderSplitRecordService.java @@ -9,19 +9,19 @@ import java.util.List; public interface OrderSplitRecordService { - int deleteByPrimaryKey(Integer id); + // int deleteByPrimaryKey(Integer id); - int insertOrUpdate(OrderSplitRecord record); + // int insertOrUpdate(OrderSplitRecord record); - int insertOrUpdateSelective(OrderSplitRecord record); + // int insertOrUpdateSelective(OrderSplitRecord record); - int insertSelective(OrderSplitRecord record); + // int insertSelective(OrderSplitRecord record); - OrderSplitRecord selectByPrimaryKey(Integer id); + // OrderSplitRecord selectByPrimaryKey(Integer id); - int updateByPrimaryKeySelective(OrderSplitRecord record); + // int updateByPrimaryKeySelective(OrderSplitRecord record); - int updateBatchSelective(List list); + // int updateBatchSelective(List list); int batchInsert(List list); diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/OrderSplitRecordServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/OrderSplitRecordServiceImpl.java index 01b53ef27..c87818cc1 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/OrderSplitRecordServiceImpl.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/OrderSplitRecordServiceImpl.java @@ -23,40 +23,40 @@ public class OrderSplitRecordServiceImpl implements OrderSplitRecordService { @Resource private OrderSplitRecordMapper orderSplitRecordMapper; - @Override - public int deleteByPrimaryKey(Integer id) { - return orderSplitRecordMapper.deleteByPrimaryKey(id); - } + // @Override + // public int deleteByPrimaryKey(Integer id) { + // return orderSplitRecordMapper.deleteByPrimaryKey(id); + // } - @Override - public int insertOrUpdate(OrderSplitRecord record) { - return orderSplitRecordMapper.insertOrUpdate(record); - } + // @Override + // public int insertOrUpdate(OrderSplitRecord record) { + // return orderSplitRecordMapper.insertOrUpdate(record); + // } - @Override - public int insertOrUpdateSelective(OrderSplitRecord record) { - return orderSplitRecordMapper.insertOrUpdateSelective(record); - } + // @Override + // public int insertOrUpdateSelective(OrderSplitRecord record) { + // return orderSplitRecordMapper.insertOrUpdateSelective(record); + // } - @Override - public int insertSelective(OrderSplitRecord record) { - return orderSplitRecordMapper.insertSelective(record); - } + // @Override + // public int insertSelective(OrderSplitRecord record) { + // return orderSplitRecordMapper.insertSelective(record); + // } - @Override - public OrderSplitRecord selectByPrimaryKey(Integer id) { - return orderSplitRecordMapper.selectByPrimaryKey(id); - } + // @Override + // public OrderSplitRecord selectByPrimaryKey(Integer id) { + // return orderSplitRecordMapper.selectByPrimaryKey(id); + // } - @Override - public int updateByPrimaryKeySelective(OrderSplitRecord record) { - return orderSplitRecordMapper.updateByPrimaryKeySelective(record); - } + // @Override + // public int updateByPrimaryKeySelective(OrderSplitRecord record) { + // return orderSplitRecordMapper.updateByPrimaryKeySelective(record); + // } - @Override - public int updateBatchSelective(List list) { - return orderSplitRecordMapper.updateBatchSelective(list); - } + // @Override + // public int updateBatchSelective(List list) { + // return orderSplitRecordMapper.updateBatchSelective(list); + // } @Override public int batchInsert(List list) {