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.
udi-wms-java/src/main/java/com/glxp/api/entity/auth/AuthLicense.java

29 lines
645 B
Java

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