package com.whyc.service;
|
|
import com.whyc.mapper.BattStationTempHisMapper;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
|
@Service
|
public class BattStationTempHisService {
|
|
@Resource
|
private BattStationTempHisMapper mapper;
|
|
public void createTableByMonth(Integer battGroupId,String month) {
|
mapper.createTableByMonth(battGroupId,month);
|
}
|
|
}
|