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.
|
|
|
package com.glxp.api.entity.auth;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
@Data
|
|
|
|
@TableName("auth_license")
|
|
|
|
public class AuthLicense {
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
|
|
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;
|
|
|
|
}
|