123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- package com.bizmatics.model;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.time.LocalDateTime;
- import java.io.Serializable;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * <p>
- * 租户信息表
- * </p>
- *
- * @author ya
- * @since 2022-05-05
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- public class SysTenant implements Serializable {
- private static final long serialVersionUID=1L;
- /**
- * 租户ID
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 租户编号
- */
- private String tenantCode;
- /**
- * 租户名称
- */
- private String tenantName;
- /**
- * 租户负责人
- */
- private String tenantManager;
- /**
- * 租户类型(0 试用租户 1 正式租户)
- */
- private String tenantType;
- /**
- * 租户站点域名
- */
- private String domain;
- /**
- * 租户邮箱
- */
- private String email;
- /**
- * 手机号码
- */
- private String phoneNumber;
- /**
- * 联系地址
- */
- private String address;
- /**
- * 地理位置
- */
- private String geoPosition;
- /**
- * 有效期限
- */
- private String tenantTerm;
- /**
- * 备注
- */
- private String remark;
- /**
- * 租户状态(0正常 1停用)
- */
- private String status;
- /**
- * 创建者
- */
- private String createBy;
- /**
- * 创建时间
- */
- private LocalDateTime createTime;
- /**
- * 更新者
- */
- private String updateBy;
- /**
- * 更新时间
- */
- private LocalDateTime updateTime;
- /**
- * 系统名称
- */
- private String systemName;
- }
|