mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-10 18:30:02 +08:00
update 订单分账记录Service 删除方法
This commit is contained in:
@@ -9,19 +9,19 @@ import java.util.List;
|
|||||||
|
|
||||||
public interface OrderSplitRecordService {
|
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<OrderSplitRecord> list);
|
// int updateBatchSelective(List<OrderSplitRecord> list);
|
||||||
|
|
||||||
int batchInsert(List<OrderSplitRecord> list);
|
int batchInsert(List<OrderSplitRecord> list);
|
||||||
|
|
||||||
|
|||||||
@@ -23,40 +23,40 @@ public class OrderSplitRecordServiceImpl implements OrderSplitRecordService {
|
|||||||
@Resource
|
@Resource
|
||||||
private OrderSplitRecordMapper orderSplitRecordMapper;
|
private OrderSplitRecordMapper orderSplitRecordMapper;
|
||||||
|
|
||||||
@Override
|
// @Override
|
||||||
public int deleteByPrimaryKey(Integer id) {
|
// public int deleteByPrimaryKey(Integer id) {
|
||||||
return orderSplitRecordMapper.deleteByPrimaryKey(id);
|
// return orderSplitRecordMapper.deleteByPrimaryKey(id);
|
||||||
}
|
// }
|
||||||
|
|
||||||
@Override
|
// @Override
|
||||||
public int insertOrUpdate(OrderSplitRecord record) {
|
// public int insertOrUpdate(OrderSplitRecord record) {
|
||||||
return orderSplitRecordMapper.insertOrUpdate(record);
|
// return orderSplitRecordMapper.insertOrUpdate(record);
|
||||||
}
|
// }
|
||||||
|
|
||||||
@Override
|
// @Override
|
||||||
public int insertOrUpdateSelective(OrderSplitRecord record) {
|
// public int insertOrUpdateSelective(OrderSplitRecord record) {
|
||||||
return orderSplitRecordMapper.insertOrUpdateSelective(record);
|
// return orderSplitRecordMapper.insertOrUpdateSelective(record);
|
||||||
}
|
// }
|
||||||
|
|
||||||
@Override
|
// @Override
|
||||||
public int insertSelective(OrderSplitRecord record) {
|
// public int insertSelective(OrderSplitRecord record) {
|
||||||
return orderSplitRecordMapper.insertSelective(record);
|
// return orderSplitRecordMapper.insertSelective(record);
|
||||||
}
|
// }
|
||||||
|
|
||||||
@Override
|
// @Override
|
||||||
public OrderSplitRecord selectByPrimaryKey(Integer id) {
|
// public OrderSplitRecord selectByPrimaryKey(Integer id) {
|
||||||
return orderSplitRecordMapper.selectByPrimaryKey(id);
|
// return orderSplitRecordMapper.selectByPrimaryKey(id);
|
||||||
}
|
// }
|
||||||
|
|
||||||
@Override
|
// @Override
|
||||||
public int updateByPrimaryKeySelective(OrderSplitRecord record) {
|
// public int updateByPrimaryKeySelective(OrderSplitRecord record) {
|
||||||
return orderSplitRecordMapper.updateByPrimaryKeySelective(record);
|
// return orderSplitRecordMapper.updateByPrimaryKeySelective(record);
|
||||||
}
|
// }
|
||||||
|
|
||||||
@Override
|
// @Override
|
||||||
public int updateBatchSelective(List<OrderSplitRecord> list) {
|
// public int updateBatchSelective(List<OrderSplitRecord> list) {
|
||||||
return orderSplitRecordMapper.updateBatchSelective(list);
|
// return orderSplitRecordMapper.updateBatchSelective(list);
|
||||||
}
|
// }
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int batchInsert(List<OrderSplitRecord> list) {
|
public int batchInsert(List<OrderSplitRecord> list) {
|
||||||
|
|||||||
Reference in New Issue
Block a user