| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | | package com.doumee.biz.zbom.model.zhongtai.response; |  |   |  | import lombok.Data; |  |   |  | import java.io.Serializable; |  |   |  | @Data |  | public class ZTUserGetTokenResponse implements Serializable { |  |     /** |  |      *用户临时票据 |  |      */ |  |     private String token; |  |     /** |  |      * 有效期 秒 |  |      */ |  |     private Long expire; |  |   |  |   |  | } | 
 |