Skip to content

Commit

Permalink
add useraccountinfo class
Browse files Browse the repository at this point in the history
add useraccountinfo class
  • Loading branch information
leelance committed Jun 19, 2016
1 parent 8d08ac2 commit 7e58594
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package com.lance.dubbo.modal;

public class UserAccountInfo extends BaseInfo {
private static final long serialVersionUID = 3022390598318849542L;

/**用户ID*/
private int userId;
/**账户金额*/
private double amount;

public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
public double getAmount() {
return amount;
}
public void setAmount(double amount) {
this.amount = amount;
}
}

0 comments on commit 7e58594

Please sign in to comment.