Package io.ebean.annotation
Annotation Type Sum
-
@Retention(RUNTIME) @Target(FIELD) public @interface Sum
Specify a property to be an SUM aggregation.@Sumis short hand for@Aggregation("sum(...propertyName...)")Example:
{@code
@Retention(RUNTIME) @Target(FIELD) public @interface Sum
@Sum is short hand for @Aggregation("sum(...propertyName...)")
{@code