|
@@ -0,0 +1,172 @@
|
|
|
|
+package cn.com.ty.lift.system.entity;
|
|
|
|
+
|
|
|
|
+import org.apache.ibatis.type.Alias;
|
|
|
|
+
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 实体类 - 表:user_info
|
|
|
|
+ * @since 2019-11-25 18:01:00
|
|
|
|
+ */
|
|
|
|
+@Alias("UserInfo")
|
|
|
|
+public class UserInfo {
|
|
|
|
+ private Long userId;
|
|
|
|
+
|
|
|
|
+ private String name;
|
|
|
|
+
|
|
|
|
+ private String mobile;
|
|
|
|
+
|
|
|
|
+ private Byte gender;
|
|
|
|
+
|
|
|
|
+ private Byte age;
|
|
|
|
+
|
|
|
|
+ private String remarks;
|
|
|
|
+
|
|
|
|
+ private String signature;
|
|
|
|
+
|
|
|
|
+ private Integer serviceTotal;
|
|
|
|
+
|
|
|
|
+ private Integer satisfactionTotal;
|
|
|
|
+
|
|
|
|
+ private Integer level;
|
|
|
|
+
|
|
|
|
+ private Integer maintenanceTotal;
|
|
|
|
+
|
|
|
|
+ private Integer emergencyTotal;
|
|
|
|
+
|
|
|
|
+ private Integer liftTotal;
|
|
|
|
+
|
|
|
|
+ private BigDecimal balance;
|
|
|
|
+
|
|
|
|
+ private String type;
|
|
|
|
+
|
|
|
|
+ private String avatarUrl;
|
|
|
|
+
|
|
|
|
+ public Long getUserId() {
|
|
|
|
+ return userId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setUserId(Long userId) {
|
|
|
|
+ this.userId = userId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getName() {
|
|
|
|
+ return name;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setName(String name) {
|
|
|
|
+ this.name = name;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getMobile() {
|
|
|
|
+ return mobile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setMobile(String mobile) {
|
|
|
|
+ this.mobile = mobile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Byte getGender() {
|
|
|
|
+ return gender;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setGender(Byte gender) {
|
|
|
|
+ this.gender = gender;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Byte getAge() {
|
|
|
|
+ return age;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAge(Byte age) {
|
|
|
|
+ this.age = age;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getRemarks() {
|
|
|
|
+ return remarks;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setRemarks(String remarks) {
|
|
|
|
+ this.remarks = remarks;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSignature() {
|
|
|
|
+ return signature;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSignature(String signature) {
|
|
|
|
+ this.signature = signature;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getServiceTotal() {
|
|
|
|
+ return serviceTotal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setServiceTotal(Integer serviceTotal) {
|
|
|
|
+ this.serviceTotal = serviceTotal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getSatisfactionTotal() {
|
|
|
|
+ return satisfactionTotal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSatisfactionTotal(Integer satisfactionTotal) {
|
|
|
|
+ this.satisfactionTotal = satisfactionTotal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getLevel() {
|
|
|
|
+ return level;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setLevel(Integer level) {
|
|
|
|
+ this.level = level;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getMaintenanceTotal() {
|
|
|
|
+ return maintenanceTotal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setMaintenanceTotal(Integer maintenanceTotal) {
|
|
|
|
+ this.maintenanceTotal = maintenanceTotal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getEmergencyTotal() {
|
|
|
|
+ return emergencyTotal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setEmergencyTotal(Integer emergencyTotal) {
|
|
|
|
+ this.emergencyTotal = emergencyTotal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getLiftTotal() {
|
|
|
|
+ return liftTotal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setLiftTotal(Integer liftTotal) {
|
|
|
|
+ this.liftTotal = liftTotal;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public BigDecimal getBalance() {
|
|
|
|
+ return balance;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBalance(BigDecimal balance) {
|
|
|
|
+ this.balance = balance;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getType() {
|
|
|
|
+ return type;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setType(String type) {
|
|
|
|
+ this.type = type;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getAvatarUrl() {
|
|
|
|
+ return avatarUrl;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAvatarUrl(String avatarUrl) {
|
|
|
|
+ this.avatarUrl = avatarUrl;
|
|
|
|
+ }
|
|
|
|
+}
|