whyclxw
2024-01-17 71a7ca2daff23173fb6905ff562cf7a9830d5df0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.whyc.service;
 
import com.whyc.mapper.CKPowerDevBattRtDataSetMapper;
import com.whyc.pojo.db_ckpwrdev_data_rt.CKPowerDevBattRtDataSet;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.List;
 
@Service
public class CKPowerDevBattRtDataSetService {
 
    @Resource
    private CKPowerDevBattRtDataSetMapper mapper;
 
    public void update(CKPowerDevBattRtDataSet set) {
        mapper.update(set,null);
    }
 
    public void updateBatch(List<CKPowerDevBattRtDataSet> list) {
        mapper.updateBatch(list);
    }
}