gao
2020-05-27 462c39faeab614ce29e2887548a257e441c6ae5d
1
2
3
4
5
6
7
8
9
10
package com.xcong.excoin.common.system.base;
 
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * @author wzy
 */
public interface IBaseService<T> extends IService<T> {
    T findById(Object id);
}