forked from leelance/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add useraccountinfo class
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
demo-springmvc-dubbo-provider/src/main/java/com/lance/dubbo/modal/UserAccountInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |