#
luxiaotao1123
2024-03-20 0e8b41f6f2ffa21ca6394e20053b262d2dc1e1be
1
2
3
4
5
6
7
8
9
10
11
package com.zy.asrs.common.sys.service;
 
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.common.sys.entity.Config;
 
public interface ConfigService extends IService<Config> {
 
    Config selectByCode(String code);
 
}