mitao
2024-06-03 a6508a543e3727eb527db5feec9ac7155e88f599
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.CustomConfig;
 
/**
 * <p>
 * 系统配置 服务类
 * </p>
 *
 * @author mitao
 * @since 2024-05-21
 */
public interface ICustomConfigService extends IService<CustomConfig> {
 
}