1 package net.sf.cglib.proxy;
2
3 public class ED {
4 private Long id;
5 private float amount;
6
7 public float getAmount() {
8 return amount;
9 }
10
11 public Long getId() {
12 return id;
13 }
14
15 public void setAmount(float amount) {
16 this.amount = amount;
17 }
18
19 public void setId(Long id) {
20 this.id = id;
21 }
22 }
23
This page was automatically generated by Maven