mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
update
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
package com.jsowell.pile.service;
|
||||
|
||||
import com.jsowell.pile.domain.OrderUnsplitRecord;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface OrderUnsplitRecordService {
|
||||
void batchInsert(List<OrderUnsplitRecord> orderUnsplitRecordList);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,21 @@
|
||||
package com.jsowell.pile.service.impl;
|
||||
|
||||
import com.jsowell.pile.domain.OrderUnsplitRecord;
|
||||
import com.jsowell.pile.mapper.OrderUnsplitRecordMapper;
|
||||
import com.jsowell.pile.service.OrderUnsplitRecordService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Service
|
||||
public class OrderUnsplitRecordServiceImpl implements OrderUnsplitRecordService {
|
||||
|
||||
@Autowired
|
||||
private OrderUnsplitRecordMapper orderUnsplitRecordMapper;
|
||||
|
||||
@Override
|
||||
public void batchInsert(List<OrderUnsplitRecord> orderUnsplitRecordList) {
|
||||
orderUnsplitRecordMapper.batchInsert(orderUnsplitRecordList);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user