package com.whyc.service;
|
|
import com.whyc.dto.Real.AlmDto;
|
import com.whyc.dto.Response;
|
import com.whyc.mapper.BattAlmparamMapper;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
@Service
|
public class BattAlmparamService {
|
@Autowired(required = false)
|
private BattAlmparamMapper mapper;
|
//获取电池告警参数
|
public Response getBattAlmParam(AlmDto almDto) {
|
return null;
|
}
|
}
|