31 lines
601 B
Java
31 lines
601 B
Java
![]() |
package com.ruoyi.abuwx.domain;
|
||
|
|
||
|
import com.ruoyi.common.annotation.Excel;
|
||
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||
|
import lombok.Data;
|
||
|
|
||
|
@Data
|
||
|
public class AbucoderWxuser extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** ID */
|
||
|
private Long id;
|
||
|
|
||
|
/** 微信名称 */
|
||
|
@Excel(name = "微信名称")
|
||
|
private String nickname;
|
||
|
|
||
|
/** 头像 */
|
||
|
@Excel(name = "头像")
|
||
|
private String avatar;
|
||
|
|
||
|
/** OpenID */
|
||
|
@Excel(name = "OpenID")
|
||
|
private String openid;
|
||
|
|
||
|
/** 性别 */
|
||
|
@Excel(name = "性别")
|
||
|
private Integer gender;
|
||
|
}
|