| Package | Description |
|---|---|
| org.teasoft.bee.mongodb |
Function about Mongodb.
|
| org.teasoft.bee.mvc.service |
Interface and class about service layer.
|
| org.teasoft.bee.osql |
Function about Object SQL.
|
| org.teasoft.bee.osql.api |
The main and most commonly used API interfaces.
|
| Modifier and Type | Method and Description |
|---|---|
<T> long |
MongodbBeeSql.insertAndReturnId(T entity,
IncludeType includeType)
According to entity object insert record and return id value.
|
| Modifier and Type | Method and Description |
|---|---|
<T> int |
ObjSQLRichAbstractServiceImpl.delete(T entity,
IncludeType includeType) |
<T> int |
ObjSQLRichAbstractServiceImpl.insert(T entity,
IncludeType includeType) |
<T> long |
ObjSQLRichAbstractServiceImpl.insertAndReturnId(T entity,
IncludeType includeType) |
<T> List<T> |
ObjSQLRichAbstractServiceImpl.select(T entity,
IncludeType includeType) |
<T> List<T> |
ObjSQLRichAbstractServiceImpl.select(T entity,
IncludeType includeType,
Condition condition) |
<T> String |
ObjSQLRichAbstractServiceImpl.selectJson(T entity,
IncludeType includeType) |
<T> String |
ObjSQLRichAbstractServiceImpl.selectJson(T entity,
IncludeType includeType,
Condition condition) |
<T> int |
ObjSQLRichAbstractServiceImpl.update(T entity,
IncludeType includeType) |
<T> int |
ObjSQLRichAbstractServiceImpl.update(T entity,
IncludeType includeType,
String... updateFieldList) |
<T> int |
ObjSQLRichAbstractServiceImpl.updateBy(T entity,
IncludeType includeType,
String... whereFields) |
| Modifier and Type | Method and Description |
|---|---|
IncludeType |
ConditionAssistant.getIncludeType() |
static IncludeType |
IncludeType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IncludeType[] |
IncludeType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
<T> String |
ObjToSQLRich.toDeleteSQL(T entity,
IncludeType includeType) |
<T> String |
ObjToSQLRich.toInsertSQL(T entity,
IncludeType includeType) |
<T> String |
ObjToSQLRich.toSelectSQL(T entity,
IncludeType includeType) |
<T> String |
ObjToSQLRich.toUpdateBySQL(T entity,
IncludeType includeType,
String... whereFields) |
<T> String |
ObjToSQLRich.toUpdateSQL(T entity,
IncludeType includeType) |
<T> String |
ObjToSQLRich.toUpdateSQL(T entity,
IncludeType includeType,
String... updateFields) |
| Modifier and Type | Method and Description |
|---|---|
<T> int |
SuidRich.delete(T entity,
IncludeType includeType)
Delete record according to entity.
|
<T> int |
SuidRich.insert(T entity,
IncludeType includeType)
Insert record according to entity.
|
<T> long |
SuidRich.insertAndReturnId(T entity,
IncludeType includeType)
According to entity object insert record and return id value.
|
<T> List<T> |
SuidRich.select(T entity,
IncludeType includeType)
Select record according to entity.
|
<T> List<T> |
SuidRich.select(T entity,
IncludeType includeType,
Condition condition)
Deprecated.
Suid.select(Object,Condition) can set includeType via condition. |
<T> String |
SuidRich.selectJson(T entity,
IncludeType includeType)
Select and return data in Json format according to entity object.
|
<T> String |
SuidRich.selectJson(T entity,
IncludeType includeType,
Condition condition)
Deprecated.
SuidRich.selectJson(Object,Condition) can set includeType via condition. |
Condition |
Condition.setIncludeType(IncludeType includeType)
Set the IncludeType filter parameter.
|
<T> int |
SuidRich.update(T entity,
IncludeType includeType)
Update record according to entity by primary key.
|
<T> int |
SuidRich.update(T entity,
IncludeType includeType,
String... updateFields)
Update record according to entity.
|
<T> int |
SuidRich.updateBy(T entity,
IncludeType includeType,
String... whereFields)
Update record according to whereFields.
|
Copyright © 2024. All rights reserved.