|
|
|
@@ -2,13 +2,13 @@ package com.simple.domain.po; |
|
|
|
|
|
|
|
import com.simple.utils.BaseConstant; |
|
|
|
|
|
|
|
import javax.persistence.*; |
|
|
|
import java.util.*; |
|
|
|
import java.math.*; |
|
|
|
import javax.persistence.Transient; |
|
|
|
import java.util.List; |
|
|
|
import javax.persistence.Id; |
|
|
|
import javax.persistence.Table; |
|
|
|
import javax.persistence.Transient; |
|
|
|
import java.io.Serializable; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
import java.util.UUID; |
|
|
|
|
|
|
|
@Table(name = "wx_merchant_b_user") |
|
|
|
public class WxMerchantBUser implements Serializable { |
|
|
|
@@ -74,6 +74,10 @@ public class WxMerchantBUser implements Serializable { |
|
|
|
/*用户过期时间**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="用户过期时间",name="expireTime") |
|
|
|
private Date expireTime; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value="name",name="name") |
|
|
|
private String name; |
|
|
|
|
|
|
|
public String getTenantId() { |
|
|
|
return tenantId; |
|
|
|
} |
|
|
|
@@ -135,7 +139,13 @@ public class WxMerchantBUser implements Serializable { |
|
|
|
expireTime = _expireTime; |
|
|
|
} |
|
|
|
|
|
|
|
public String getName() { |
|
|
|
return name; |
|
|
|
} |
|
|
|
|
|
|
|
public void setName(String name) { |
|
|
|
this.name = name; |
|
|
|
} |
|
|
|
|
|
|
|
public static enum Field |
|
|
|
{ |
|
|
|
@@ -150,7 +160,9 @@ public class WxMerchantBUser implements Serializable { |
|
|
|
,AppId_ASC("`appId` ASC"),AppId_DESC("`appId` DESC") |
|
|
|
,Token_ASC("`token` ASC"),Token_DESC("`token` DESC") |
|
|
|
,ExpireTime_ASC("`expireTime` ASC"),ExpireTime_DESC("`expireTime` DESC") |
|
|
|
; |
|
|
|
,Name_ASC("`name` ASC"),Name_DESC("`name` DESC") |
|
|
|
|
|
|
|
; |
|
|
|
private String value; |
|
|
|
Field(String value){ |
|
|
|
this.value = value; |
|
|
|
|