package com.zyp.dao; import java.util.List; public interface IDao { public <T> void add(T t) throws Exception; public <T> void delete(Class<T> clazz, int id) throws Exception; public <T> void update(T t) throws Exception; public <T> T get(Class<T> clazz, int id) throws Exception; public <T> List<T> getList(Class<T> clazz) throws Exception; public <T> List<T> getList(Class<T> clazz, int start, int limit) throws Exception; public <T> List<T> getList(Class<T> clazz, String field, String keyword, int start, int limit) throws Exception; }

flygrass LV12
2023年12月7日
zmlzsw LV8
2021年12月10日
1171120570 LV1
2020年12月18日
zuiwomengjiaren LV11
2020年9月4日
zhengshuang LV1
2020年5月31日
vpv123
2020年3月7日
暂无贡献等级
Jay1109 LV1
2019年12月11日
Lee9527 LV1
2019年9月12日
dd168168
2019年8月26日
暂无贡献等级
zxx521125 LV9
2019年8月26日