whycxzp
2023-06-25 19e5ccb1aee7c0e0d308386e03cad72bf4997d0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
    }
}