puzhibing
2023-06-24 0bc5e07b24c08c41f14b066597d693026ec5fb89
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 {
}