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.
21 lines
310 B
21 lines
310 B
3 years ago
|
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;
|
||
|
}
|
||
|
|