12345678910111213141516171819 |
- package org.jeecg.modules.demo.querymanage.service.impl;
- import org.jeecg.modules.demo.querymanage.entity.Querymanage;
- import org.jeecg.modules.demo.querymanage.mapper.QuerymanageMapper;
- import org.jeecg.modules.demo.querymanage.service.IQuerymanageService;
- import org.springframework.stereotype.Service;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- /**
- * @Description: 查询配置表
- * @Author: jeecg-boot
- * @Date: 2022-02-07
- * @Version: V1.0
- */
- @Service
- public class QuerymanageServiceImpl extends ServiceImpl<QuerymanageMapper, Querymanage> implements IQuerymanageService {
- }
|