package com.whyc.service; import com.whyc.mapper.WorkflowDeviceMapper; import com.whyc.pojo.web_site.WorkflowDevice; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service public class WorkflowDeviceService { @Autowired private WorkflowDeviceMapper mapper; public void addBatch(List deviceList) { mapper.insertBatchSomeColumn(deviceList); } }