新火炬后端单体项目初始化代码
Houjie
昨天 58f19f978b2e0794c4569d67ad79ee53e3541fcd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.jeecg.modules.base.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.base.entity.Factory;
import org.jeecg.modules.base.entity.PrinterConfig;
 
import java.util.List;
 
/**
 * @Description: 打印机配置
 * @Author: jeecg-boot
 * @Date:   2025-06-24
 * @Version: V1.0
 */
public interface IPrinterConfigService extends IService<PrinterConfig> {
    /**
     * 查询IP列表
     * @return
     */
    List<PrinterConfig> queryUserPrinterConfigList();
}