A pojo like this ``` @Getter @Setter Class A { private Timestamp birthday; public Integer getAge() { if (this.birthday == null) { return null; } return DateUtil.ageOfNow(this.birthday); } } ``` it won't generate the `age` field, only `birthday` field