|
@@ -0,0 +1,85 @@
|
|
|
|
+package com.ym.mec.biz.dal.entity;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+import java.util.Date;
|
|
|
|
+
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
+
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 平台用户与机构关系表(SysUserTenant)表实体类
|
|
|
|
+ *
|
|
|
|
+ * @author hgw
|
|
|
|
+ * @since 2022-03-02 11:09:34
|
|
|
|
+ */
|
|
|
|
+@ApiModel(value = "sys_user_tenant-平台用户与机构关系表")
|
|
|
|
+public class SysUserTenant implements Serializable {
|
|
|
|
+ @TableId(value = "id_", type = IdType.AUTO)
|
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
|
+ private Integer id;
|
|
|
|
+
|
|
|
|
+ @TableField("user_id_")
|
|
|
|
+ @ApiModelProperty(value = "用户id")
|
|
|
|
+ private Integer userId;
|
|
|
|
+
|
|
|
|
+ @TableField("tenant_id_")
|
|
|
|
+ @ApiModelProperty(value = "机构id")
|
|
|
|
+ private Integer tenantId;
|
|
|
|
+
|
|
|
|
+ @TableField("created_by_")
|
|
|
|
+ @ApiModelProperty(value = "创建人")
|
|
|
|
+ private Integer createdBy;
|
|
|
|
+
|
|
|
|
+ @TableField("created_time_")
|
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
|
+ private Date createdTime;
|
|
|
|
+
|
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
|
+
|
|
|
|
+ public Integer getId() {
|
|
|
|
+ return id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setId(Integer id) {
|
|
|
|
+ this.id = id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getUserId() {
|
|
|
|
+ return userId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setUserId(Integer userId) {
|
|
|
|
+ this.userId = userId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getTenantId() {
|
|
|
|
+ return tenantId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTenantId(Integer tenantId) {
|
|
|
|
+ this.tenantId = tenantId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getCreatedBy() {
|
|
|
|
+ return createdBy;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCreatedBy(Integer createdBy) {
|
|
|
|
+ this.createdBy = createdBy;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Date getCreatedTime() {
|
|
|
|
+ return createdTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCreatedTime(Date createdTime) {
|
|
|
|
+ this.createdTime = createdTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+
|