whycxzp
2023-12-20 022c4c7f652f3bcde6466de6fb1e30ca73091d4a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
 
@Service
public class CKPowerDevBattRtDataSetService {
 
    @Resource
    private CKPowerDevBattRtDataSetMapper mapper;
 
    public void update(CKPowerDevBattRtDataSet set) {
        mapper.update(set,null);
    }
 
    public void updateBatch(CKPowerDevBattRtDataSet set) {
        mapper.update(set,null);
    }
}