118a998e00a905ad35f948440e674221065e9291.svn-base 614 B

12345678910111213141516171819
  1. package org.jeecg.modules.demo.querymanage.service.impl;
  2. import org.jeecg.modules.demo.querymanage.entity.Querymanage;
  3. import org.jeecg.modules.demo.querymanage.mapper.QuerymanageMapper;
  4. import org.jeecg.modules.demo.querymanage.service.IQuerymanageService;
  5. import org.springframework.stereotype.Service;
  6. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  7. /**
  8. * @Description: 查询配置表
  9. * @Author: jeecg-boot
  10. * @Date: 2022-02-07
  11. * @Version: V1.0
  12. */
  13. @Service
  14. public class QuerymanageServiceImpl extends ServiceImpl<QuerymanageMapper, Querymanage> implements IQuerymanageService {
  15. }