Please add option to allow the Field annotations to be added to the fields as opposed to the getters/setters.
e.g.
@Column(name = "expiry_days", nullable = false)
private Integer expiryDays;
as opposed to being attached to the set/getters
@Column(name = "expiry_days", nullable = false)
public Integer getExpiryDays() {
return this.expiryDays;
}
Its likely that get/setters will disappear as its boilerplate code anyhow (unless you want to override it)… so makes sense to add it to the field.