public class ObjectToSQLRich extends ObjectToSQL implements org.teasoft.bee.osql.ObjToSQLRich
| 构造器和说明 |
|---|
ObjectToSQLRich() |
| 限定符和类型 | 方法和说明 |
|---|---|
static void |
checkPackageByClass(Class c) |
String |
toDeleteByIdSQL(Class c,
Integer id) |
String |
toDeleteByIdSQL(Class c,
Long id) |
String |
toDeleteByIdSQL(Class c,
String ids) |
<T> String |
toDeleteSQL(T entity,
org.teasoft.bee.osql.IncludeType includeType) |
<T> String[] |
toInsertSQL(T[] entity) |
<T> String[] |
toInsertSQL(T[] entity,
int batchSize) |
<T> String[] |
toInsertSQL(T[] entity,
int batchSize,
String excludeFieldList) |
<T> String[] |
toInsertSQL(T[] entity,
String excludeFieldList) |
<T> String |
toInsertSQL(T entity,
org.teasoft.bee.osql.IncludeType includeType) |
<T> String |
toSelectByIdSQL(T entity,
Integer id) |
<T> String |
toSelectByIdSQL(T entity,
Long id) |
<T> String |
toSelectByIdSQL(T entity,
String ids) |
<T> String |
toSelectFunSQL(T entity,
org.teasoft.bee.osql.FunctionType functionType,
String fieldForFun) |
<T> String |
toSelectOrderBySQL(T entity,
String orderFieldList) |
<T> String |
toSelectOrderBySQL(T entity,
String orderFieldList,
org.teasoft.bee.osql.OrderType[] orderTypes) |
<T> String |
toSelectSQL(T entity,
org.teasoft.bee.osql.IncludeType includeType) |
<T> String |
toSelectSQL(T entity,
org.teasoft.bee.osql.IncludeType includeType,
org.teasoft.bee.osql.Condition condition) |
<T> String |
toSelectSQL(T entity,
int size) |
<T> String |
toSelectSQL(T entity,
int start,
int size) |
<T> String |
toSelectSQL(T entity,
String fields) |
<T> String |
toSelectSQL(T entity,
String selectFields,
int start,
int size) |
<T> String |
toUpdateBySQL(T entity,
String whereFieldList) |
<T> String |
toUpdateBySQL(T entity,
String whereFieldList,
org.teasoft.bee.osql.Condition condition) |
<T> String |
toUpdateBySQL(T entity,
String whereFieldList,
org.teasoft.bee.osql.IncludeType includeType) |
<T> String |
toUpdateSQL(T entity,
org.teasoft.bee.osql.IncludeType includeType) |
<T> String |
toUpdateSQL(T entity,
String updateFieldList) |
<T> String |
toUpdateSQL(T entity,
String updateFieldList,
org.teasoft.bee.osql.Condition condition) |
<T> String |
toUpdateSQL(T entity,
String updateFieldList,
org.teasoft.bee.osql.IncludeType includeType) |
toDeleteSQL, toDeleteSQL, toInsertSQL, toSelectSQL, toSelectSQL, toUpdateSQLpublic <T> String toSelectSQL(T entity, int size)
toSelectSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toSelectSQL(T entity, int start, int size)
toSelectSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toSelectSQL(T entity, String selectFields, int start, int size)
toSelectSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toSelectSQL(T entity, String fields) throws org.teasoft.bee.osql.ObjSQLException
toSelectSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichorg.teasoft.bee.osql.ObjSQLExceptionpublic <T> String toSelectOrderBySQL(T entity, String orderFieldList) throws org.teasoft.bee.osql.ObjSQLException
toSelectOrderBySQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichorg.teasoft.bee.osql.ObjSQLExceptionpublic <T> String toSelectOrderBySQL(T entity, String orderFieldList, org.teasoft.bee.osql.OrderType[] orderTypes) throws org.teasoft.bee.osql.ObjSQLException
toSelectOrderBySQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichorg.teasoft.bee.osql.ObjSQLExceptionpublic <T> String toUpdateSQL(T entity, String updateFieldList)
toUpdateSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toUpdateSQL(T entity, String updateFieldList, org.teasoft.bee.osql.IncludeType includeType)
toUpdateSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toSelectFunSQL(T entity, org.teasoft.bee.osql.FunctionType functionType, String fieldForFun) throws org.teasoft.bee.osql.ObjSQLException
toSelectFunSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichorg.teasoft.bee.osql.ObjSQLExceptionpublic <T> String toSelectSQL(T entity, org.teasoft.bee.osql.IncludeType includeType)
toSelectSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toDeleteSQL(T entity, org.teasoft.bee.osql.IncludeType includeType)
toDeleteSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toInsertSQL(T entity, org.teasoft.bee.osql.IncludeType includeType)
toInsertSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toUpdateSQL(T entity, org.teasoft.bee.osql.IncludeType includeType)
toUpdateSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String[] toInsertSQL(T[] entity)
toInsertSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String[] toInsertSQL(T[] entity, int batchSize)
toInsertSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String[] toInsertSQL(T[] entity, String excludeFieldList)
toInsertSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String[] toInsertSQL(T[] entity, int batchSize, String excludeFieldList)
toInsertSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic String toDeleteByIdSQL(Class c, Integer id)
toDeleteByIdSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic String toDeleteByIdSQL(Class c, Long id)
toDeleteByIdSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic String toDeleteByIdSQL(Class c, String ids)
toDeleteByIdSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toSelectByIdSQL(T entity, Integer id)
toSelectByIdSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toSelectByIdSQL(T entity, Long id)
toSelectByIdSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toSelectByIdSQL(T entity, String ids)
toSelectByIdSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toSelectSQL(T entity, org.teasoft.bee.osql.IncludeType includeType, org.teasoft.bee.osql.Condition condition)
toSelectSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toUpdateBySQL(T entity, String whereFieldList)
toUpdateBySQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toUpdateBySQL(T entity, String whereFieldList, org.teasoft.bee.osql.IncludeType includeType)
toUpdateBySQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toUpdateBySQL(T entity, String whereFieldList, org.teasoft.bee.osql.Condition condition)
toUpdateBySQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic <T> String toUpdateSQL(T entity, String updateFieldList, org.teasoft.bee.osql.Condition condition)
toUpdateSQL 在接口中 org.teasoft.bee.osql.ObjToSQLRichpublic static void checkPackageByClass(Class c)
Copyright © 2020. All rights reserved.