Van333
2022-10-26 f7debb464a2d49b6e66b014cf2beef2a9c4bf98d
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;
 
}