From a0cd34acf14a149cc3c08b41ca4dde6938a29ecc Mon Sep 17 00:00:00 2001
From: wzy <wzy19931122ai@163.com>
Date: Wed, 07 Jul 2021 22:31:34 +0800
Subject: [PATCH] modify
---
zq-erp/src/main/java/com/matrix/biz/bean/BizUser.java | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++-------
1 files changed, 53 insertions(+), 7 deletions(-)
diff --git a/zq-erp/src/main/java/com/matrix/biz/bean/BizUser.java b/zq-erp/src/main/java/com/matrix/biz/bean/BizUser.java
index 92049f8..0fa5868 100644
--- a/zq-erp/src/main/java/com/matrix/biz/bean/BizUser.java
+++ b/zq-erp/src/main/java/com/matrix/biz/bean/BizUser.java
@@ -13,17 +13,37 @@
@Extend
private static final long serialVersionUID = 1L;
+ /**
+ * 是销售员
+ */
+ public static final int IS_SALES = 1;
+ /**
+ * 不是销售员
+ */
+ public static final int NOT_SALES = 2;
+
+
/**
* 主键
*/
- private String userId;
+ private Long userId;
/**
* 真实姓名
*/
private String userName;
+
+ /**
+ * 可提现金额
+ */
+ private Double withdrawalCash;
+
+ /**
+ *推广员等级
+ */
+ private Long salesmanGrade;
/**
@@ -177,9 +197,14 @@
/**
- * 是否是销售员(1=是,0=否)
+ * 是否是销售员(1=是,2=否)
*/
private Integer isSales;
+
+ /**
+ * 用户类型 1、待审核 2、审核通过 0、审核未通过
+ */
+ private Integer fenxiaoState;
/**
@@ -211,15 +236,13 @@
this.companyId = companyId;
}
- public void setToken(String token) {
- this.token=userId;
- }
- public String getUserId() {
+
+ public Long getUserId() {
return userId;
}
- public void setUserId(String userId) {
+ public void setUserId(Long userId) {
this.userId=userId;
}
@@ -232,6 +255,21 @@
this.userName=userName;
}
+ public Double getWithdrawalCash() {
+ return withdrawalCash;
+ }
+
+ public void setWithdrawalCash(Double withdrawalCash) {
+ this.withdrawalCash = withdrawalCash;
+ }
+
+ public Long getSalesmanGrade() {
+ return salesmanGrade;
+ }
+
+ public void setSalesmanGrade(Long salesmanGrade) {
+ this.salesmanGrade = salesmanGrade;
+ }
public String getUserPassword() {
return userPassword;
@@ -476,4 +514,12 @@
public void setIsSales(Integer isSales) {
this.isSales = isSales;
}
+
+ public Integer getFenxiaoState() {
+ return fenxiaoState;
+ }
+
+ public void setFenxiaoState(Integer fenxiaoState) {
+ this.fenxiaoState = fenxiaoState;
+ }
}
\ No newline at end of file
--
Gitblit v1.9.1