Specify a property to be an AVG aggregation.
@Avg is short hand for @Aggregation("avg(...propertyName...)")
Example:
@Avg
BigDecimal distance;
// is the same as:
@Aggregation("avg(distance)")
BigDecimal distance;