package com.whyc.service;
|
|
import com.whyc.bts.BTS_ChargeData;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
@Service
|
public class BtsChargeDataService {
|
@Autowired
|
private BTS_ChargeData data;
|
|
//获取充电数据
|
public BTS_ChargeData getChrData(String filePath) {
|
data.readChrFile(filePath);
|
return data;
|
}
|
}
|