org.nutz.service
类 IdEntityService<T>

java.lang.Object
  继承者 org.nutz.service.Service
      继承者 org.nutz.service.EntityService<T>
          继承者 org.nutz.service.IdEntityService<T>
直接已知子类:
IdNameEntityService

public abstract class IdEntityService<T>
extends EntityService<T>


构造方法摘要
IdEntityService()
           
IdEntityService(Dao dao)
           
IdEntityService(Dao dao, java.lang.Class<T> entityType)
           
 
方法摘要
 int delete(long id)
           
 boolean exists(long id)
           
 T fetch(long id)
           
 int getMaxId()
           
 
从类 org.nutz.service.EntityService 继承的方法
clear, clear, count, count, deletex, each, exists, fetch, fetchx, getEntity, getEntityClass, mirror, query, setEntityType, update, updateRelation
 
从类 org.nutz.service.Service 继承的方法
dao, setDao
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

IdEntityService

public IdEntityService()

IdEntityService

public IdEntityService(Dao dao)

IdEntityService

public IdEntityService(Dao dao,
                       java.lang.Class<T> entityType)
方法详细信息

fetch

public T fetch(long id)

delete

public int delete(long id)

getMaxId

public int getMaxId()

exists

public boolean exists(long id)