提交 f8f997ab authored 作者: chenxinchang's avatar chenxinchang

--no commit message

上级 4c9992df
......@@ -50,6 +50,8 @@ public class MemberRequestPath extends BaseRequestPath {
/** 根据机构id查询机构的关联资源*/
public static final String ORGAN_DIYTYPES = ORGAN+"/diytypes/{organId}";
/** 余额*/
public static final String BALANCE = "/balance";
......
......@@ -8,7 +8,7 @@ public class BalanceUpdateForm {
@ApiModelProperty("会员id")
private Integer memberId;
@ApiModelProperty("金额")
private Double money;
private double money;
@ApiModelProperty("备注")
private String remark;
@ApiModelProperty("类型 0收入,1支出")
......
package com.zrqx.core.model.member;
import javax.persistence.Id;
import javax.persistence.Table;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
@Table(name = "m_Assets")
@ApiModel(value = "Assets", description = "用户资产表")
public class Assets {
@Id
@ApiModelProperty("会员id")
private Integer id;
@ApiModelProperty("余额")
private Double balance;
}
......@@ -40,9 +40,6 @@ public class Member {
@ApiModelProperty("qqKey")
@JsonIgnore
private String qqKey;
@ApiModelProperty("余额")
@JsonIgnore
private Double balance;
@ApiModelProperty("用户类别:0 普通用户,1专家用户,2机构用户")
private Integer level;
@ApiModelProperty("创建时间")
......
......@@ -17,6 +17,8 @@ public class MemberListVO {
private Integer status;
@ApiModelProperty("用户类别:0 普通用户,1专家用户,2机构用户")
private Integer level;
@ApiModelProperty("余额")
private double balance;
@ApiModelProperty("创建时间")
private Date createTime;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论