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.
22 lines
339 B
22 lines
339 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 epmetUserId;
|
|
|
|
private String extInfo;
|
|
}
|
|
|
|
|