update
This commit is contained in:
@@ -1,48 +0,0 @@
|
||||
package com.lovenav.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* ln_admin
|
||||
*/
|
||||
@Data
|
||||
public class Admin implements Serializable {
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 管理员登录账号
|
||||
*/
|
||||
private String adminAccount;
|
||||
|
||||
/**
|
||||
* 管理员登录密码
|
||||
*/
|
||||
private String adminPassword;
|
||||
|
||||
/**
|
||||
* 管理员邮箱
|
||||
*/
|
||||
private String adminEmail;
|
||||
|
||||
/**
|
||||
* 角色组id
|
||||
*/
|
||||
private Integer roleId;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createtime;
|
||||
|
||||
/**
|
||||
* 状态(0有效/1禁用)
|
||||
*/
|
||||
private Integer adminStatus;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@@ -1,24 +0,0 @@
|
||||
package com.lovenav.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 管理员资料表
|
||||
* ln_admin_meta
|
||||
*/
|
||||
@Data
|
||||
public class AdminMeta implements Serializable {
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 管理员id
|
||||
*/
|
||||
private Long adminId;
|
||||
|
||||
private String metaKey;
|
||||
|
||||
private String metaValue;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
Reference in New Issue
Block a user