package com.whyc.service;
|
|
import com.whyc.mapper.SOPProductMapper;
|
import com.whyc.pojo.SOPProduct;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
import java.util.List;
|
|
@Service
|
public class SOPProductService {
|
|
@Resource
|
private SOPProductMapper mapper;
|
|
public void insertBatch(List<SOPProduct> sopProductList) {
|
mapper.insertBatchSomeColumn(sopProductList);
|
}
|
}
|