mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 22:15:06 +08:00
update 查询充电桩详情
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
package com.jsowell.pile.service;
|
||||
|
||||
import com.jsowell.pile.domain.OrderSplitInfo;
|
||||
|
||||
import java.util.List;
|
||||
public interface OrderSplitInfoService{
|
||||
|
||||
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
int insert(OrderSplitInfo record);
|
||||
|
||||
int insertOrUpdate(OrderSplitInfo record);
|
||||
|
||||
int insertOrUpdateSelective(OrderSplitInfo record);
|
||||
|
||||
int insertSelective(OrderSplitInfo record);
|
||||
|
||||
OrderSplitInfo selectByPrimaryKey(Integer id);
|
||||
|
||||
int updateByPrimaryKeySelective(OrderSplitInfo record);
|
||||
|
||||
int updateByPrimaryKey(OrderSplitInfo record);
|
||||
|
||||
int updateBatch(List<OrderSplitInfo> list);
|
||||
|
||||
int updateBatchSelective(List<OrderSplitInfo> list);
|
||||
|
||||
int batchInsert(List<OrderSplitInfo> list);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
package com.jsowell.pile.service.impl;
|
||||
|
||||
import com.jsowell.pile.domain.OrderSplitInfo;
|
||||
import com.jsowell.pile.mapper.OrderSplitInfoMapper;
|
||||
import com.jsowell.pile.service.OrderSplitInfoService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.List;
|
||||
@Service
|
||||
public class OrderSplitInfoServiceImpl implements OrderSplitInfoService{
|
||||
|
||||
@Resource
|
||||
private OrderSplitInfoMapper orderSplitInfoMapper;
|
||||
|
||||
@Override
|
||||
public int deleteByPrimaryKey(Integer id) {
|
||||
return orderSplitInfoMapper.deleteByPrimaryKey(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int insert(OrderSplitInfo record) {
|
||||
return orderSplitInfoMapper.insert(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int insertOrUpdate(OrderSplitInfo record) {
|
||||
return orderSplitInfoMapper.insertOrUpdate(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int insertOrUpdateSelective(OrderSplitInfo record) {
|
||||
return orderSplitInfoMapper.insertOrUpdateSelective(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int insertSelective(OrderSplitInfo record) {
|
||||
return orderSplitInfoMapper.insertSelective(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public OrderSplitInfo selectByPrimaryKey(Integer id) {
|
||||
return orderSplitInfoMapper.selectByPrimaryKey(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int updateByPrimaryKeySelective(OrderSplitInfo record) {
|
||||
return orderSplitInfoMapper.updateByPrimaryKeySelective(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int updateByPrimaryKey(OrderSplitInfo record) {
|
||||
return orderSplitInfoMapper.updateByPrimaryKey(record);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int updateBatch(List<OrderSplitInfo> list) {
|
||||
return orderSplitInfoMapper.updateBatch(list);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int updateBatchSelective(List<OrderSplitInfo> list) {
|
||||
return orderSplitInfoMapper.updateBatchSelective(list);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int batchInsert(List<OrderSplitInfo> list) {
|
||||
return orderSplitInfoMapper.batchInsert(list);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user