puzhibing
2023-07-24 d0f6c2f32d81540866b1f93eefc425743f725495
1
2
3
4
5
6
7
8
9
10
11
package com.supersavedriving.user.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.supersavedriving.user.modular.system.dao.MainContentMapper;
import com.supersavedriving.user.modular.system.model.MainContent;
import com.supersavedriving.user.modular.system.service.IMainContentService;
import org.springframework.stereotype.Service;
 
@Service
public class MainContentServiceImpl extends ServiceImpl<MainContentMapper, MainContent> implements IMainContentService {
}