1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.sandu.ximon.admin.service;
|
| import com.sandu.common.service.impl.BaseServiceImpl;
| import com.sandu.ximon.dao.domain.LightRemark;
| import com.sandu.ximon.dao.mapper.LightRemarkMapper;
| import org.springframework.stereotype.Service;
|
| /**
| * @author chenjiantian
| * @date 2021/12/13 16:00
| * 灯设备service
| */
| @Service
| public class LightRemarkService extends BaseServiceImpl<LightRemarkMapper, LightRemark> {
| }
|
|