mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-13 03:39:55 +08:00
update
This commit is contained in:
@@ -179,6 +179,61 @@ public class OrderBasicInfoServiceImpl implements OrderBasicInfoService {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private ClearingBillDetailService clearingBillDetailService;
|
private ClearingBillDetailService clearingBillDetailService;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int deleteByPrimaryKey(Integer id) {
|
||||||
|
return orderBasicInfoMapper.deleteByPrimaryKey(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int insert(OrderBasicInfo record) {
|
||||||
|
return orderBasicInfoMapper.insert(record);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int insertOrUpdate(OrderBasicInfo record) {
|
||||||
|
return orderBasicInfoMapper.insertOrUpdate(record);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int insertOrUpdateSelective(OrderBasicInfo record) {
|
||||||
|
return orderBasicInfoMapper.insertOrUpdateSelective(record);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int insertSelective(OrderBasicInfo record) {
|
||||||
|
return orderBasicInfoMapper.insertSelective(record);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public OrderBasicInfo selectByPrimaryKey(Integer id) {
|
||||||
|
return orderBasicInfoMapper.selectByPrimaryKey(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int updateByPrimaryKeySelective(OrderBasicInfo record) {
|
||||||
|
return orderBasicInfoMapper.updateByPrimaryKeySelective(record);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int updateByPrimaryKey(OrderBasicInfo record) {
|
||||||
|
return orderBasicInfoMapper.updateByPrimaryKey(record);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int updateBatch(List<OrderBasicInfo> list) {
|
||||||
|
return orderBasicInfoMapper.updateBatch(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int updateBatchSelective(List<OrderBasicInfo> list) {
|
||||||
|
return orderBasicInfoMapper.updateBatchSelective(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int batchInsert(List<OrderBasicInfo> list) {
|
||||||
|
return orderBasicInfoMapper.batchInsert(list);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 条件查询订单基本信息
|
* 条件查询订单基本信息
|
||||||
*
|
*
|
||||||
@@ -3641,59 +3696,6 @@ public class OrderBasicInfoServiceImpl implements OrderBasicInfoService {
|
|||||||
return orderBasicInfoMapper.queryOrderListByGroupCode(groupCode);
|
return orderBasicInfoMapper.queryOrderListByGroupCode(groupCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public int deleteByPrimaryKey(Integer id) {
|
|
||||||
return orderBasicInfoMapper.deleteByPrimaryKey(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int insert(OrderBasicInfo record) {
|
|
||||||
return orderBasicInfoMapper.insert(record);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int insertOrUpdate(OrderBasicInfo record) {
|
|
||||||
return orderBasicInfoMapper.insertOrUpdate(record);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int insertOrUpdateSelective(OrderBasicInfo record) {
|
|
||||||
return orderBasicInfoMapper.insertOrUpdateSelective(record);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int insertSelective(OrderBasicInfo record) {
|
|
||||||
return orderBasicInfoMapper.insertSelective(record);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public OrderBasicInfo selectByPrimaryKey(Integer id) {
|
|
||||||
return orderBasicInfoMapper.selectByPrimaryKey(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int updateByPrimaryKeySelective(OrderBasicInfo record) {
|
|
||||||
return orderBasicInfoMapper.updateByPrimaryKeySelective(record);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int updateByPrimaryKey(OrderBasicInfo record) {
|
|
||||||
return orderBasicInfoMapper.updateByPrimaryKey(record);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int updateBatch(List<OrderBasicInfo> list) {
|
|
||||||
return orderBasicInfoMapper.updateBatch(list);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int updateBatchSelective(List<OrderBasicInfo> list) {
|
|
||||||
return orderBasicInfoMapper.updateBatchSelective(list);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int batchInsert(List<OrderBasicInfo> list) {
|
|
||||||
return orderBasicInfoMapper.batchInsert(list);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user