2021与蓝度共同重构项目,服务端
liuhaonan
2021-12-02 505b6c31d930dcfda28db38bc71cfce2c5082785
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> {
}