|
|
@ -1,11 +1,16 @@
|
|
|
|
package com.glxp.api.entity.auth;
|
|
|
|
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 lombok.Data;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
@Data
|
|
|
|
|
|
|
|
@TableName("auth_license")
|
|
|
|
public class AuthLicense {
|
|
|
|
public class AuthLicense {
|
|
|
|
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
|
|
private String id;
|
|
|
|
private String id;
|
|
|
|
// 名称
|
|
|
|
// 名称
|
|
|
|
private String name;
|
|
|
|
private String name;
|
|
|
|