|
@@ -194,7 +194,7 @@ final class Expressions {
|
|
* @return 操作人/表达式
|
|
* @return 操作人/表达式
|
|
*/
|
|
*/
|
|
public static Pair<Long, Expression> operator() {
|
|
public static Pair<Long, Expression> operator() {
|
|
- Long operator = ObjectUtils.ifNull(SessionContextHolder.getId(), 1L);
|
|
|
|
|
|
+ Long operator = ObjectUtils.ifNull(SessionContextHolder.getId(), 0L);
|
|
return Pair.of(operator, new LongValue(operator));
|
|
return Pair.of(operator, new LongValue(operator));
|
|
}
|
|
}
|
|
|
|
|