package com.gear.swx.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
import com.gear.swx.mapper.SwxContentsMapper;
|
import com.gear.swx.domain.SwxContents;
|
import com.gear.swx.service.ISwxContentsService;
|
|
/**
|
* 内容管理Service业务层处理
|
*
|
* @author czx
|
* @date 2023-11-25
|
*/
|
@Service
|
public class SwxContentsServiceImpl extends ServiceImpl<SwxContentsMapper, SwxContents> implements ISwxContentsService {
|
@Autowired
|
private SwxContentsMapper swxContentsMapper;
|
}
|