2021与蓝度共同重构项目,服务端
liuhaonan
2021-11-30 e845cb09ab27e98a86b30bcedd84d8b559e1ca4b
1
2
3
4
5
6
7
8
9
10
11
12
package com.sandu.ximon.admin.service;
 
import com.sandu.common.service.impl.BaseServiceImpl;
import com.sandu.ximon.dao.domain.LampCount;
import com.sandu.ximon.dao.mapper.LampCountMapper;
import lombok.Data;
import org.springframework.stereotype.Service;
 
@Service
@Data
public class LampCountService extends BaseServiceImpl<LampCountMapper, LampCount> {
}