自动化立体仓库 - WMS系统
#
lty
16 小时以前 a778a4122fdb65d33c414b3fc2096dd18f5d3422
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.zy.asrs.entity;
 
import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableField;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
@Data
@TableName("sys_erp_secret")
public class ErpSecret implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 临时token
     */
    @ApiModelProperty(value= "临时token")
    @TableField("access_token")
    private String accessToken;
 
    /**
     * 刷新token
     */
    @ApiModelProperty(value= "刷新token")
    @TableField("refresh_token")
    private String refreshToken;
 
    /**
     * 用户id
     */
    @ApiModelProperty(value= "用户id")
    @TableField("account_id")
    private String accountId;
 
    public ErpSecret() {}
 
    public ErpSecret(String accessToken,String refreshToken,String accountId) {
        this.accessToken = accessToken;
        this.refreshToken = refreshToken;
        this.accountId = accountId;
    }
 
//    ErpSecret erpSecret = new ErpSecret(
//            null,    // 临时token
//            null,    // 刷新token
//            null    // 用户id
//    );
 
 
}