mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-30 08:00:00 +08:00
update 订单分账记录Service 删除方法
This commit is contained in:
@@ -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<OrderSplitRecord> list) {
|
||||
return orderSplitRecordMapper.updateBatchSelective(list);
|
||||
}
|
||||
// @Override
|
||||
// public int updateBatchSelective(List<OrderSplitRecord> list) {
|
||||
// return orderSplitRecordMapper.updateBatchSelective(list);
|
||||
// }
|
||||
|
||||
@Override
|
||||
public int batchInsert(List<OrderSplitRecord> list) {
|
||||
|
||||
Reference in New Issue
Block a user