zouxuan 5 年之前
父节点
当前提交
070ae77be6
共有 1 个文件被更改,包括 80 次插入0 次删除
  1. 80 0
      src/main/java/com/ym/mec/collectfee/entity/MecUserInfo.java

+ 80 - 0
src/main/java/com/ym/mec/collectfee/entity/MecUserInfo.java

@@ -0,0 +1,80 @@
+package com.ym.mec.collectfee.entity;
+
+import com.thoughtworks.xstream.annotations.XStreamAlias;
+
+/**
+ * 根据手机号获取的用户详情
+ */
+@XStreamAlias("userInfo")
+public class MecUserInfo {
+
+    private Integer userId;
+
+    private String userName;
+
+    private String mobile;
+
+    private String wxNum;
+
+    private String realName;
+
+    private String schoolName;
+
+    private Integer active;
+
+    public Integer getUserId() {
+        return userId;
+    }
+
+    public void setUserId(Integer userId) {
+        this.userId = userId;
+    }
+
+    public String getUserName() {
+        return userName;
+    }
+
+    public void setUserName(String userName) {
+        this.userName = userName;
+    }
+
+    public String getMobile() {
+        return mobile;
+    }
+
+    public void setMobile(String mobile) {
+        this.mobile = mobile;
+    }
+
+    public String getWxNum() {
+        return wxNum;
+    }
+
+    public void setWxNum(String wxNum) {
+        this.wxNum = wxNum;
+    }
+
+    public String getRealName() {
+        return realName;
+    }
+
+    public void setRealName(String realName) {
+        this.realName = realName;
+    }
+
+    public String getSchoolName() {
+        return schoolName;
+    }
+
+    public void setSchoolName(String schoolName) {
+        this.schoolName = schoolName;
+    }
+
+    public Integer getActive() {
+        return active;
+    }
+
+    public void setActive(Integer active) {
+        this.active = active;
+    }
+}