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.

38 lines
695 B

package org.springblade.weixin.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import org.springblade.core.mp.base.BaseEntity;
@Data
@TableName("eh_wx_user")
public class WeChatUser extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
* 微信用户唯一标识
*/
private String openId;
/**
* 昵称
*/
private String username;
/**
* 手机
*/
private String phone;
/**
* 头像
*/
private String avatar;
/**
* 购买次数
*/
@TableField(exist = false)
private Integer count;
}