package api.service;
|
|
import api.bean.LampEntity;
|
import api.bean.ReqParams;
|
import api.bean.WeatherEntity;
|
import api.dao.LampDao;
|
import com.github.pagehelper.PageHelper;
|
import com.github.pagehelper.PageInfo;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import java.util.List;
|
|
/**
|
* @author van
|
* @version 1.0
|
* msg:单灯控制
|
* @date 2021/11/2 10:24
|
*/
|
@Service("lampService")
|
public class PoleService {
|
@Autowired
|
private AccessService accessService;
|
|
}
|