rename: extraConditionParam 保持构建者命名风格。

This commit is contained in:
Suomm 2023-07-31 16:23:53 +08:00
parent b34733cfda
commit 3e96675e27

View File

@ -63,7 +63,7 @@ public class RelationsQuery<T extends Model<T>> extends AbstractQuery<T> {
* @param value
* @return {@code Relations} 查询构建
*/
public RelationsQuery<T> extraCondition(String key, Object value) {
public RelationsQuery<T> extraConditionParam(String key, Object value) {
RelationManager.addExtraConditionParam(key, value);
return this;
}