public interface IFeatureManager extends gu.sql2java.TableManager<FeatureBean>
| 限定符和类型 | 方法和说明 |
|---|---|
java.lang.String |
checkDuplicate(java.lang.String md5)
Check duplicated row by primary keys,if row exists throw exception
|
int |
deleteByPrimaryKey(java.util.Collection<java.lang.String> keys)
Delete rows according to primary key.
|
int |
deleteByPrimaryKey(java.lang.String... keys)
Delete rows according to primary key.
|
int |
deleteByPrimaryKey(java.lang.String md5)
Delete row according to its primary keys.
|
int |
deleteFaceBeansByFeatureMd5(java.lang.String md5OfFeature)
delete the associated
FaceBean objects from fd_face.feature_md5 field. |
boolean |
existsPrimaryKey(java.lang.String md5)
check if contains row with primary key fields.
|
FaceBean[] |
getFaceBeansByFeatureMd5(FeatureBean bean)
Retrieves the
FaceBean object from the fd_face.feature_md5 field. |
FaceBean[] |
getFaceBeansByFeatureMd5(java.lang.String md5OfFeature)
Retrieves the
FaceBean object from the fd_face.feature_md5 field. |
java.util.List<FaceBean> |
getFaceBeansByFeatureMd5AsList(FeatureBean bean)
see also #getFaceBeansByFeatureMd5AsList(FeatureBean,int,int)
|
java.util.List<FaceBean> |
getFaceBeansByFeatureMd5AsList(FeatureBean bean,
int startRow,
int numRows)
Retrieves the
FaceBean object from fd_face.feature_md5 field. |
java.util.List<FaceBean> |
getFaceBeansByFeatureMd5AsList(java.lang.String md5OfFeature)
Retrieves the
FaceBean object from fd_face.feature_md5 field. |
java.util.List<FeatureBean> |
loadByPrimaryKey(java.util.Collection<java.lang.String> keys)
Loads
FeatureBean from the fd_feature using primary key fields. |
java.util.List<FeatureBean> |
loadByPrimaryKey(java.lang.String... keys)
Loads
FeatureBean from the fd_feature using primary key fields. |
FeatureBean |
loadByPrimaryKey(java.lang.String md5)
Loads a
FeatureBean from the fd_feature using primary key fields. |
FeatureBean |
loadByPrimaryKeyChecked(java.lang.String md5)
Loads a
FeatureBean from the fd_feature using primary key fields. |
FeatureBean |
save(FeatureBean bean,
java.util.Collection<FaceBean> impFaceByFeatureMd5)
Save the FeatureBean bean and referenced beans and imported beans into the database.
|
FeatureBean |
save(FeatureBean bean,
FaceBean[] impFaceByFeatureMd5)
Save the FeatureBean bean and referenced beans and imported beans into the database.
|
FeatureBean |
saveAsTransaction(FeatureBean bean,
java.util.Collection<FaceBean> impFaceByFeatureMd5)
Transaction version for sync save
see also save(FeatureBean , java.util.Collection ) |
FeatureBean |
saveAsTransaction(FeatureBean bean,
FaceBean[] impFaceByFeatureMd5)
Transaction version for sync save
see also save(FeatureBean , FaceBean[] ) |
<C extends java.util.Collection<FaceBean>> |
setFaceBeansByFeatureMd5(FeatureBean bean,
C importedBeans)
set the
FaceBean object java.util.Collection associate to FeatureBean by the fd_face.feature_md5 field. |
FaceBean[] |
setFaceBeansByFeatureMd5(FeatureBean bean,
FaceBean[] importedBeans)
set the
FaceBean object array associate to FeatureBean by the fd_face.feature_md5 field. |
java.util.List<java.lang.String> |
toPrimaryKeyList(java.util.Collection<FeatureBean> beans)
return a primary key list from
FeatureBean collection |
java.util.List<java.lang.String> |
toPrimaryKeyList(FeatureBean... beans)
return a primary key list from
FeatureBean array |
addIfAbsent, checkDuplicate, countAll, countUsingTemplate, countUsingTemplate, countWhere, delete, delete, delete, deleteAll, deleteByPrimaryKey, deleteByWhere, deleteUsingTemplate, existsByPrimaryKey, existsPrimaryKey, foreach, foreachByWhere, loadAll, loadAll, loadAll, loadAll, loadAllAsList, loadAllAsList, loadByPrimaryKey, loadByPrimaryKey, loadByPrimaryKeyChecked, loadByPrimaryKeyChecked, loadByWhere, loadByWhere, loadByWhere, loadByWhere, loadByWhere, loadByWhere, loadByWhereAsList, loadByWhereAsList, loadByWhereAsList, loadByWhereForAction, loadColumnAsList, loadUniqueUsingTemplate, loadUniqueUsingTemplateChecked, loadUsingTemplate, loadUsingTemplate, loadUsingTemplate, loadUsingTemplate, loadUsingTemplate, loadUsingTemplate, loadUsingTemplateAsList, loadUsingTemplateAsList, loadUsingTemplateAsList, registerListener, save, save, save, saveAsTransaction, saveAsTransaction, unregisterListenerFeatureBean loadByPrimaryKey(java.lang.String md5) throws gu.sql2java.exception.RuntimeDaoException
FeatureBean from the fd_feature using primary key fields.md5 - String - PK# 1null if not foundgu.sql2java.exception.RuntimeDaoExceptionFeatureBean loadByPrimaryKeyChecked(java.lang.String md5) throws gu.sql2java.exception.RuntimeDaoException, gu.sql2java.exception.ObjectRetrievalException
FeatureBean from the fd_feature using primary key fields.md5 - String - PK# 1gu.sql2java.exception.ObjectRetrievalException - if not foundgu.sql2java.exception.RuntimeDaoExceptionboolean existsPrimaryKey(java.lang.String md5) throws gu.sql2java.exception.RuntimeDaoException
md5 - String - PK# 1gu.sql2java.exception.RuntimeDaoExceptionjava.lang.String checkDuplicate(java.lang.String md5) throws gu.sql2java.exception.RuntimeDaoException, gu.sql2java.exception.ObjectRetrievalException
md5 - primary keysgu.sql2java.exception.RuntimeDaoExceptiongu.sql2java.exception.ObjectRetrievalExceptionjava.util.List<FeatureBean> loadByPrimaryKey(java.lang.String... keys) throws gu.sql2java.exception.RuntimeDaoException
FeatureBean from the fd_feature using primary key fields.keys - primary keys arraygu.sql2java.exception.RuntimeDaoExceptionjava.util.List<FeatureBean> loadByPrimaryKey(java.util.Collection<java.lang.String> keys) throws gu.sql2java.exception.RuntimeDaoException
FeatureBean from the fd_feature using primary key fields.keys - primary keys collectiongu.sql2java.exception.RuntimeDaoExceptionint deleteByPrimaryKey(java.lang.String md5) throws gu.sql2java.exception.RuntimeDaoException
md5 - String - PK# 1gu.sql2java.exception.RuntimeDaoExceptionint deleteByPrimaryKey(java.lang.String... keys) throws gu.sql2java.exception.RuntimeDaoException
keys - primary keys arraygu.sql2java.exception.RuntimeDaoExceptionTableManager.delete(gu.sql2java.BaseBean)int deleteByPrimaryKey(java.util.Collection<java.lang.String> keys) throws gu.sql2java.exception.RuntimeDaoException
keys - primary keys collectiongu.sql2java.exception.RuntimeDaoExceptionTableManager.delete(gu.sql2java.BaseBean)FaceBean[] getFaceBeansByFeatureMd5(FeatureBean bean) throws gu.sql2java.exception.RuntimeDaoException
FaceBean object from the fd_face.feature_md5 field.bean - the FeatureBeanFaceBean beans or null if bean is nullgu.sql2java.exception.RuntimeDaoExceptionFaceBean[] getFaceBeansByFeatureMd5(java.lang.String md5OfFeature) throws gu.sql2java.exception.RuntimeDaoException
FaceBean object from the fd_face.feature_md5 field.md5OfFeature - String - PK# 1FaceBean beans or null if bean is nullgu.sql2java.exception.RuntimeDaoExceptionjava.util.List<FaceBean> getFaceBeansByFeatureMd5AsList(FeatureBean bean) throws gu.sql2java.exception.RuntimeDaoException
bean - gu.sql2java.exception.RuntimeDaoExceptionjava.util.List<FaceBean> getFaceBeansByFeatureMd5AsList(java.lang.String md5OfFeature) throws gu.sql2java.exception.RuntimeDaoException
FaceBean object from fd_face.feature_md5 field.md5OfFeature - String - PK# 1FaceBean beansgu.sql2java.exception.RuntimeDaoExceptionint deleteFaceBeansByFeatureMd5(java.lang.String md5OfFeature) throws gu.sql2java.exception.RuntimeDaoException
FaceBean objects from fd_face.feature_md5 field.md5OfFeature - String - PK# 1gu.sql2java.exception.RuntimeDaoExceptionjava.util.List<FaceBean> getFaceBeansByFeatureMd5AsList(FeatureBean bean, int startRow, int numRows) throws gu.sql2java.exception.RuntimeDaoException
FaceBean object from fd_face.feature_md5 field.bean - the FeatureBeanstartRow - the start row to be used (first row = 1, last row=-1)numRows - the number of rows to be retrieved (all rows = a negative number)FaceBean beans or empty list if bean is nullgu.sql2java.exception.RuntimeDaoExceptionFaceBean[] setFaceBeansByFeatureMd5(FeatureBean bean, FaceBean[] importedBeans) throws gu.sql2java.exception.RuntimeDaoException
FaceBean object array associate to FeatureBean by the fd_face.feature_md5 field.bean - the referenced FeatureBeanimportedBeans - imported beans from fd_facegu.sql2java.exception.RuntimeDaoExceptionIFaceManager.setReferencedByFeatureMd5(FaceBean, FeatureBean)<C extends java.util.Collection<FaceBean>> C setFaceBeansByFeatureMd5(FeatureBean bean, C importedBeans) throws gu.sql2java.exception.RuntimeDaoException
FaceBean object java.util.Collection associate to FeatureBean by the fd_face.feature_md5 field.bean - the referenced FeatureBeanimportedBeans - imported beans from fd_facegu.sql2java.exception.RuntimeDaoExceptionIFaceManager.setReferencedByFeatureMd5(FaceBean, FeatureBean)FeatureBean save(FeatureBean bean, FaceBean[] impFaceByFeatureMd5) throws gu.sql2java.exception.RuntimeDaoException
bean - the FeatureBean bean to be savedimpFaceByFeatureMd5 - the FaceBean bean refer to FeatureBeanFeatureBean beangu.sql2java.exception.RuntimeDaoExceptionFeatureBean saveAsTransaction(FeatureBean bean, FaceBean[] impFaceByFeatureMd5) throws gu.sql2java.exception.RuntimeDaoException
save(FeatureBean , FaceBean[] )bean - the FeatureBean bean to be savedimpFaceByFeatureMd5 - the FaceBean bean refer to FeatureBeanFeatureBean beangu.sql2java.exception.RuntimeDaoExceptionFeatureBean save(FeatureBean bean, java.util.Collection<FaceBean> impFaceByFeatureMd5) throws gu.sql2java.exception.RuntimeDaoException
bean - the FeatureBean bean to be savedimpFaceByFeatureMd5 - the FaceBean bean refer to FeatureBeanFeatureBean beangu.sql2java.exception.RuntimeDaoExceptionFeatureBean saveAsTransaction(FeatureBean bean, java.util.Collection<FaceBean> impFaceByFeatureMd5) throws gu.sql2java.exception.RuntimeDaoException
save(FeatureBean , java.util.Collection )bean - the FeatureBean bean to be savedimpFaceByFeatureMd5 - the FaceBean bean refer to FeatureBeanFeatureBean beangu.sql2java.exception.RuntimeDaoExceptionjava.util.List<java.lang.String> toPrimaryKeyList(FeatureBean... beans)
FeatureBean arraybeans - java.util.List<java.lang.String> toPrimaryKeyList(java.util.Collection<FeatureBean> beans)
FeatureBean collectionbeans - Copyright © 2020. All Rights Reserved.