You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
606 B
32 lines
606 B
package org.springblade.weixin.entity; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
import lombok.Data; |
|
import org.springblade.core.tenant.mp.TenantEntity; |
|
|
|
@Data |
|
@TableName("eh_wx_user") |
|
public class WeChatUser extends TenantEntity { |
|
private static final long serialVersionUID = 1L; |
|
|
|
/** |
|
* 微信用户唯一标识 |
|
*/ |
|
private String openId; |
|
|
|
/** |
|
* 微信用户唯一标识 |
|
*/ |
|
private String username; |
|
|
|
/** |
|
* 微信用户唯一标识 |
|
*/ |
|
private String phone; |
|
|
|
/** |
|
* 微信用户唯一标识 |
|
*/ |
|
private String avatar; |
|
|
|
}
|
|
|