Class StoreQueueSelectParams
java.lang.Object
org.bgerp.plugin.inventory.model.queue.StoreQueueSelectParams
Accumulates dynamic SQL parts for store queue search.
Filters that need to bind a value (e.g. a LIKE pattern) MUST use a
? placeholder in
joinPart/wherePart and add the bound value to the matching joinParams/
whereParams list, in the same order the placeholder appears — never concatenate
request-derived strings directly into the SQL text. The final query is assembled as
... FROM inventory_store AS t <joinPart> WHERE 1=1 <wherePart> ..., so all
joinParams are bound before all whereParams (join clause comes first in the
generated SQL, regardless of the order filters were applied in).-
Field Summary
FieldsModifier and TypeFieldDescription -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
queue
-
joinPart
-
wherePart
-
joinParams
-
whereParams
-
-
Constructor Details
-
StoreQueueSelectParams
public StoreQueueSelectParams()
-