Commit eb5aeade authored by hezhen's avatar hezhen

1223

parent 0088e5ca
......@@ -25,7 +25,7 @@ public class MyWallet implements Serializable {
*/
@Column(name = "id")
@ApiModelProperty(value = "id")
private Long id;
private Integer id;
/**
* 用户ID
......@@ -39,7 +39,7 @@ public class MyWallet implements Serializable {
* 余额(分)
*/
@Column(name = "balance")
@ApiModelProperty(value = "余额()")
@ApiModelProperty(value = "余额()")
private BigDecimal balance;
/**
......@@ -53,14 +53,14 @@ public class MyWallet implements Serializable {
* 进账总额(分)
*/
@Column(name = "total_amount")
@ApiModelProperty(value = "进账总额()")
@ApiModelProperty(value = "进账总额()")
private BigDecimal totalAmount;
/**
* 进账总额(分)
*/
@Column(name = "today_amount")
@ApiModelProperty(value = "进账总额()")
@ApiModelProperty(value = "进账总额()")
private BigDecimal todayAmount;
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment