Skip to content

Commit

Permalink
feat(bean):BaseTenantEntity
Browse files Browse the repository at this point in the history
  • Loading branch information
cuilan committed Nov 17, 2023
1 parent efd2ab7 commit a1f059c
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package io.github.cuilan.tom.mybatisbase.entity;

import lombok.Data;
import lombok.EqualsAndHashCode;

/**
* 数据库租户实体基类
*
* @author zhangyan
* @since 2023/11/17
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class BaseTenantEntity extends BaseEntity {

/**
* 租户id
*/
private Long tenantId;

}

0 comments on commit a1f059c

Please sign in to comment.