新增租户字段
This commit is contained in:
parent
4defbb8935
commit
5bba8cbd66
|
@ -34,5 +34,9 @@ public class SysAttachmentEntity extends BaseEntity {
|
||||||
* 存储平台
|
* 存储平台
|
||||||
*/
|
*/
|
||||||
private String platform;
|
private String platform;
|
||||||
|
/**
|
||||||
|
* 租户ID
|
||||||
|
*/
|
||||||
|
private Long tenantId;
|
||||||
|
|
||||||
}
|
}
|
|
@ -39,4 +39,8 @@ public class SysDictDataEntity extends BaseEntity {
|
||||||
* 排序
|
* 排序
|
||||||
*/
|
*/
|
||||||
private Integer sort;
|
private Integer sort;
|
||||||
|
/**
|
||||||
|
* 租户ID
|
||||||
|
*/
|
||||||
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,4 +39,8 @@ public class SysDictTypeEntity extends BaseEntity {
|
||||||
* 动态sql
|
* 动态sql
|
||||||
*/
|
*/
|
||||||
private String dictSql;
|
private String dictSql;
|
||||||
|
/**
|
||||||
|
* 租户ID
|
||||||
|
*/
|
||||||
|
private Long tenantId;
|
||||||
}
|
}
|
|
@ -59,4 +59,9 @@ public class SysLogLoginEntity {
|
||||||
@TableField(fill = FieldFill.INSERT)
|
@TableField(fill = FieldFill.INSERT)
|
||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 租户ID
|
||||||
|
*/
|
||||||
|
private Long tenantId;
|
||||||
|
|
||||||
}
|
}
|
|
@ -100,4 +100,9 @@ public class SysLogOperateEntity {
|
||||||
@TableField(fill = FieldFill.INSERT)
|
@TableField(fill = FieldFill.INSERT)
|
||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 租户ID
|
||||||
|
*/
|
||||||
|
private Long tenantId;
|
||||||
|
|
||||||
}
|
}
|
|
@ -33,4 +33,8 @@ public class SysOrgEntity extends BaseEntity {
|
||||||
*/
|
*/
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String parentName;
|
private String parentName;
|
||||||
|
/**
|
||||||
|
* 租户ID
|
||||||
|
*/
|
||||||
|
private Long tenantId;
|
||||||
}
|
}
|
|
@ -41,5 +41,8 @@ public class SysParamsEntity extends BaseEntity {
|
||||||
*/
|
*/
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 租户ID
|
||||||
|
*/
|
||||||
|
private Long tenantId;
|
||||||
}
|
}
|
|
@ -31,5 +31,8 @@ public class SysPostEntity extends BaseEntity {
|
||||||
* 状态 0:停用 1:正常
|
* 状态 0:停用 1:正常
|
||||||
*/
|
*/
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
/**
|
||||||
|
* 租户ID
|
||||||
|
*/
|
||||||
|
private Long tenantId;
|
||||||
}
|
}
|
|
@ -35,4 +35,8 @@ public class SysRoleEntity extends BaseEntity {
|
||||||
*/
|
*/
|
||||||
@TableField(fill = FieldFill.INSERT)
|
@TableField(fill = FieldFill.INSERT)
|
||||||
private Long orgId;
|
private Long orgId;
|
||||||
|
/**
|
||||||
|
* 租户ID
|
||||||
|
*/
|
||||||
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,4 +62,8 @@ public class SysUserEntity extends BaseEntity {
|
||||||
*/
|
*/
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String orgName;
|
private String orgName;
|
||||||
|
/**
|
||||||
|
* 租户ID
|
||||||
|
*/
|
||||||
|
private Long tenantId;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user