jiangping
2024-07-29 08060f5ef73a178bc675cb5406d329eb3e13a276
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.doumee.dao.web.response;
 
import lombok.Data;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2024/7/16 11:20
 */
@Data
public class ZTBaseInfoResponse {
 
    private String token;
 
    private String openId;
 
    private String userType;
 
 
 
}