RecentlyUsedPart DAO interface. More...
Public Member Functions | |
abstract void | addRecord (RecentlyUsedPart record) |
Add method. More... | |
abstract void | deleteRecord (Class clazz, Serializable serializable) |
Delete method. More... | |
abstract List | getRecentlyUsedPart () |
Get all recently used parts. More... | |
abstract List | getRecentlyUsedPartByUserInfo (String userInfo) |
Get parts by user information. More... | |
abstract List | getRecentlyUsedPartByType (String type) |
Get parts by part type. More... | |
abstract List | getRecentlyUsedPartByTypeAndUserInfo (String type, String userInfo) |
Get parts by user information and part type. More... | |
abstract int | findCountByPartName (String partName) |
Get the count of a part. More... | |
abstract int | findCountByPartNameAndUserInfo (String partName, String userInfo) |
Get the count of part by part name and user information. More... | |
abstract void | deleteRecordByID (int id) |
Delete method. More... | |
abstract int | findIDByPartNameAndUserInfo (String partName, String userInfo) |
Find the record id by part name and user information. More... | |
RecentlyUsedPart DAO interface.
|
pure virtual |
|
pure virtual |
Delete method.
clazz | |
serializable |
Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.
|
pure virtual |
|
pure virtual |
Get the count of a part.
partName |
Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.
|
pure virtual |
Get the count of part by part name and user information.
partName | |
userInfo |
Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.
|
pure virtual |
Find the record id by part name and user information.
partName | |
userInfo |
Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.
|
pure virtual |
Get all recently used parts.
Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.
|
pure virtual |
Get parts by part type.
type |
Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.
|
pure virtual |
Get parts by user information and part type.
type | |
userInfo |
Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.
|
pure virtual |
Get parts by user information.
userInfo |
Implemented in com.sanmixy.daoImpl.RecentlyUsedPartDaoImpl.