You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
414 B
Java
24 lines
414 B
Java
3 years ago
|
package com.glxp.api.entity.auth;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.Date;
|
||
|
|
||
|
@Data
|
||
|
public class AuthLicense {
|
||
|
private String id;
|
||
|
// 名称
|
||
|
private String name;
|
||
|
// appid
|
||
|
private String appid;
|
||
|
|
||
|
// apikey
|
||
|
private String apiKey;
|
||
|
// 密钥
|
||
|
private String secretKey;
|
||
|
// 创建时间
|
||
|
private Date createDate;
|
||
|
private String customerId;
|
||
|
private String companyName;
|
||
|
}
|