forked from luyan/epmet-cloud-lingshan
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.
42 lines
869 B
42 lines
869 B
package com.epmet.dto.result;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @Description
|
|
* @Author yzm
|
|
* @Date 2022/9/14 17:20
|
|
*/
|
|
@Data
|
|
public class ResiDingAppLoginResDTO {
|
|
private String authorization;
|
|
private String customerId;
|
|
private String gridId;
|
|
/**
|
|
* 网格名
|
|
*/
|
|
private String gridName;
|
|
/**
|
|
* 网格所属的组织id
|
|
*/
|
|
private String agencyId;
|
|
/**
|
|
* 居民端用户id
|
|
*/
|
|
private String epmetUserId;
|
|
|
|
/**
|
|
* 5.获取用户手机号。使用用户个人access_token调用获取用户通讯录个人信息接口获取
|
|
* 返参信息
|
|
* 接口文档:https://open.dingtalk.com/document/isvapp-server/dingtalk-retrieve-user-information
|
|
*/
|
|
private String extInfo;
|
|
|
|
/**
|
|
* 是否注册居民
|
|
* true:已注册
|
|
* false:未注册
|
|
*/
|
|
private Boolean regFlag;
|
|
}
|
|
|
|
|