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);
|
}
|
}
|