java项目常用 BaseDao BaseService
摘要:
IBaseDao 1 package com.glht.sim.dao; 2 3 import java.util.List; 4 5 6 public interface IBaseDao<T> { 7 T get(long id); 8 void create(T t); 9 void delete(T t);10 void update(T t);11 int getTotalCount();12 List<T>getPage(int startIndex,int count);13 List<T> getAll();14 }BasoDao 1 pac 阅读全文
posted @ 2011-04-24 08:38 心扬 阅读(14806) 评论(1) 推荐(1)
浙公网安备 33010602011771号