whyclxw
2025-02-08 c7ce756b2d25b5862ff8446b1b3d2b8a08bb4f8e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.whyc.service;
 
import com.whyc.mapper.AuthIdcardMapper;
import com.whyc.pojo.db_area.AuthIdcard;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
@Service
public class AuthIdcardService {
    @Autowired(required = false)
    private AuthIdcardMapper mapper;
    //插入
    public void addAuthIdCardS(List<AuthIdcard> idcards) {
        mapper.insertBatchSomeColumn(idcards);
    }
}