update SysLogininfor 增加租户编号字段 ;

update SysOperLogBo, SysLogininforBo 测试阶段设置租户编号默认值 ;
update TreeEntity 更新基类继承避免报错 ;
This commit is contained in:
zlyx 2023-02-07 20:32:14 +08:00
parent 84ac020d28
commit 6c928c9b60
4 changed files with 8 additions and 3 deletions

View File

@ -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;

View File

@ -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;
/** /**
* 用户账号 * 用户账号
*/ */

View File

@ -23,7 +23,7 @@ public class SysLogininforBo {
/** /**
* 租户编号 * 租户编号
*/ */
private String tenantId; private String tenantId = "000000";
/** /**
* 用户账号 * 用户账号

View File

@ -25,7 +25,7 @@ public class SysOperLogBo {
/** /**
* 租户编号 * 租户编号
*/ */
private String tenantId; private String tenantId = "000000";
/** /**
* 模块标题 * 模块标题