mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-21 02:25:56 +08:00
update SysLogininfor 增加租户编号字段 ;
update SysOperLogBo, SysLogininforBo 测试阶段设置租户编号默认值 ; update TreeEntity 更新基类继承避免报错 ;
This commit is contained in:
parent
84ac020d28
commit
6c928c9b60
@ -16,7 +16,7 @@ import java.util.List;
|
|||||||
|
|
||||||
@Data
|
@Data
|
||||||
@EqualsAndHashCode(callSuper = true)
|
@EqualsAndHashCode(callSuper = true)
|
||||||
public class TreeEntity<T> extends BaseEntity {
|
public class TreeEntity<T> extends TenantEntity {
|
||||||
|
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|||||||
@ -27,6 +27,11 @@ public class SysLogininfor implements Serializable {
|
|||||||
@TableId(value = "info_id")
|
@TableId(value = "info_id")
|
||||||
private Long infoId;
|
private Long infoId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 租户编号
|
||||||
|
*/
|
||||||
|
private String tenantId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户账号
|
* 用户账号
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -23,7 +23,7 @@ public class SysLogininforBo {
|
|||||||
/**
|
/**
|
||||||
* 租户编号
|
* 租户编号
|
||||||
*/
|
*/
|
||||||
private String tenantId;
|
private String tenantId = "000000";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户账号
|
* 用户账号
|
||||||
|
|||||||
@ -25,7 +25,7 @@ public class SysOperLogBo {
|
|||||||
/**
|
/**
|
||||||
* 租户编号
|
* 租户编号
|
||||||
*/
|
*/
|
||||||
private String tenantId;
|
private String tenantId = "000000";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 模块标题
|
* 模块标题
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user