whyclxw
2024-02-26 fd7fd3699d45165be5a890832659cd83ea94b9cf
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);
    }
}