I'll just give you a rough layout,
Code:
public class CarLease{
private String Title;
private String Details;
private String note;
private float monthlyFee; //calculated values
private float interestRate; //calculated values
private Date expiryDate; //calcuated values
private Date stateDate;
private Leasee leasee;
private Leasor leasor;
private Car car;
//there could be more fields in this class, things that may be modified in teh controllers etc. but I can't name any off the top of my head right now
}