2021与蓝度共同重构项目,服务端
liuhaonan
2021-12-06 60e070b0692a51d3ef54c9bbd2cd60368f8c675a
1
2
3
4
5
6
7
8
9
10
package com.sandu.ximon.admin.service;
 
import com.sandu.common.service.impl.BaseServiceImpl;
import com.sandu.ximon.dao.domain.LightAdjust;
import com.sandu.ximon.dao.mapper.LightAdjustMapper;
import org.springframework.stereotype.Service;
 
@Service
public class LightAdjustService extends BaseServiceImpl<LightAdjustMapper, LightAdjust> {
}