forked from p4vkf3rot/j2ee
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
379 B
18 lines
379 B
|
|
package com.service;
|
|
|
|
import java.util.Map;
|
|
|
|
import com.baomidou.mybatisplus.mapper.Wrapper;
|
|
import com.baomidou.mybatisplus.service.IService;
|
|
import com.entity.ConfigEntity;
|
|
import com.utils.PageUtils;
|
|
|
|
|
|
/**
|
|
* 系统用户
|
|
*/
|
|
public interface ConfigService extends IService<ConfigEntity> {
|
|
PageUtils queryPage(Map<String, Object> params,Wrapper<ConfigEntity> wrapper);
|
|
}
|