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) {