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.
26 lines
603 B
26 lines
603 B
package com.ruoyi.hl.forest.ptoto; |
|
|
|
import lombok.Data; |
|
|
|
import java.util.List; |
|
|
|
@Data |
|
public class WxUserInfoRes{ |
|
private int subscribe; |
|
private String openid; |
|
private String nickname; |
|
private String headimgurl; |
|
private int sex; |
|
private String language; |
|
private String city; |
|
private String province; |
|
private String country; |
|
private long subscribeTime; |
|
private String unionid; |
|
private String remark; |
|
private int groupid; |
|
private List<String> tagidList; |
|
private String subscribeScene; |
|
private long qrScene; |
|
private String qrSceneStr; |
|
}
|
|
|