You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
535 B
19 lines
535 B
|
6 months ago
|
package com.nov.KgLowDurable.service.Impl;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||
|
|
import com.nov.KgLowDurable.mapper.TopMenuSettingMapper;
|
||
|
|
import com.nov.KgLowDurable.pojo.entity.TopMenuSetting;
|
||
|
|
import com.nov.KgLowDurable.service.ITopMenuSettingService;
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 服务实现类
|
||
|
|
*
|
||
|
|
* @author Chill
|
||
|
|
*/
|
||
|
|
//@Master
|
||
|
|
@Service
|
||
|
|
public class TopMenuSettingServiceImpl extends ServiceImpl<TopMenuSettingMapper, TopMenuSetting> implements ITopMenuSettingService {
|
||
|
|
|
||
|
|
}
|