Van333
2022-12-29 d8f66b834134f6b755fd3fb93bb91b56f9d31f6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
 
}