Java 通用服务接口 - CommonService
/**
* @Date 2020/3/19
* @Version V1.0
**/
public interface CommonService {
/**
* 根据id获取对象
* @param id
* @return
*/
Object getById(Integer id);
/**
* 查询所有
* @return
*/
List<Object> listAll();
}
原文地址: https://www.cveoy.top/t/topic/ljGj 著作权归作者所有。请勿转载和采集!