|
@@ -0,0 +1,66 @@
|
|
|
+package com.caimei.modules.user.entity;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Description
|
|
|
+ *
|
|
|
+ * @author : Charles
|
|
|
+ * @date : 2022/11/22
|
|
|
+ */
|
|
|
+public class CmOrganValueSystem {
|
|
|
+
|
|
|
+ private Integer organID;
|
|
|
+ private Integer userID; //用户id
|
|
|
+ private String activeState;//活跃状态
|
|
|
+ private String customerValue;//客户价值
|
|
|
+ private Integer stage;//阶段:0本阶段 1上阶段 2其他阶段
|
|
|
+ private Integer delType;//是否启用:0禁用状态,1启用状态(本阶段启用,其他阶段禁用)
|
|
|
+
|
|
|
+
|
|
|
+ public Integer getOrganID() {
|
|
|
+ return organID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrganID(Integer organID) {
|
|
|
+ this.organID = organID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getUserID() {
|
|
|
+ return userID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserID(Integer userID) {
|
|
|
+ this.userID = userID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getActiveState() {
|
|
|
+ return activeState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActiveState(String activeState) {
|
|
|
+ this.activeState = activeState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCustomerValue() {
|
|
|
+ return customerValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerValue(String customerValue) {
|
|
|
+ this.customerValue = customerValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getStage() {
|
|
|
+ return stage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStage(Integer stage) {
|
|
|
+ this.stage = stage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getDelType() {
|
|
|
+ return delType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDelType(Integer delType) {
|
|
|
+ this.delType = delType;
|
|
|
+ }
|
|
|
+}
|