?? anythingtypedao.java
字號:
package com.source.dao;
import java.util.List;
import com.papa.list.Searcher;
import com.source.bean.AnythingType;
/**
* Data access object (DAO) for domain model class AnythingType.
* @see com.source.bean.AnythingType
* @author MyEclipse - Hibernate Tools
*/
public interface AnythingTypeDao
{
void save(AnythingType type);
void delete(AnythingType type);
AnythingType findById(Integer classId);
List findByExample(AnythingType type);
List findByProperty(String propertyName, Object AnythingType);
List search(int first,int pageno,Searcher searcher);
int count(Searcher searcher);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -