01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package eg.employeePayroll;
04:
05: import java.util.Date;
06:
07: public class PayCheck {
08: public int id;
09: public double amount;
10: public int number;
11: public String name;
12: public Date date;
13: }
|