|
|
|
@@ -3,7 +3,6 @@ package com.iformall.domain.po; |
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
|
|
|
import com.iformall.domain.po.base.TenantEntity; |
|
|
|
import com.iformall.enums.EnumCUserFrom; |
|
|
|
import com.iformall.enums.EnumUserType; |
|
|
|
@@ -15,7 +14,6 @@ import lombok.ToString; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
@TableName(value = "wx_c_user_from") |
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true) |
|
|
|
@Data |
|
|
|
@ToString(callSuper = true) |
|
|
|
@EqualsAndHashCode(callSuper = true) |
|
|
|
@@ -25,12 +23,12 @@ public class WxCUserFrom extends TenantEntity { |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value="cUserId",name="cUserId") |
|
|
|
protected Long cUserId; |
|
|
|
@Excel(name = "用户昵称", width = 20, orderNum = "2") |
|
|
|
@TableField(exist = false) |
|
|
|
@Excel(name = "用户昵称", width = 20, orderNum = "2") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="cUserNickName",name="cUserNickName") |
|
|
|
protected String cUserNickName; |
|
|
|
@Excel(name = "用户电话", width = 20, orderNum = "3") |
|
|
|
@TableField(exist = false) |
|
|
|
@Excel(name = "用户电话", width = 20, orderNum = "3") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="cUserPhone",name="cUserPhone") |
|
|
|
protected String cUserPhone; |
|
|
|
|
|
|
|
@@ -46,8 +44,8 @@ public class WxCUserFrom extends TenantEntity { |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value="EnumCUserFrom",name="fromType") |
|
|
|
private Integer fromType; |
|
|
|
@Excel(name = "来源", width = 20, orderNum = "1") |
|
|
|
@TableField(exist = false) |
|
|
|
@Excel(name = "来源", width = 20, orderNum = "1") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="fromType描述",name="fromTypeDesc") |
|
|
|
private String fromTypeDesc; |
|
|
|
public String getFromTypeDesc(){ |
|
|
|
|