| package org.jeecg.modules.demo.querymanage.service;import org.jeecg.modules.demo.querymanage.entity.Querymanage;import com.baomidou.mybatisplus.extension.service.IService;/** * @Description: 查询配置表 * @Author: jeecg-boot * @Date:   2022-02-07 * @Version: V1.0 */public interface IQuerymanageService extends IService<Querymanage> {}
 |