SysTenant.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package com.bizmatics.model;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import java.time.LocalDateTime;
  5. import java.io.Serializable;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. import lombok.experimental.Accessors;
  9. /**
  10. * <p>
  11. * 租户信息表
  12. * </p>
  13. *
  14. * @author ya
  15. * @since 2022-05-05
  16. */
  17. @Data
  18. @EqualsAndHashCode(callSuper = false)
  19. @Accessors(chain = true)
  20. public class SysTenant implements Serializable {
  21. private static final long serialVersionUID=1L;
  22. /**
  23. * 租户ID
  24. */
  25. @TableId(value = "id", type = IdType.AUTO)
  26. private Integer id;
  27. /**
  28. * 租户编号
  29. */
  30. private String tenantCode;
  31. /**
  32. * 租户名称
  33. */
  34. private String tenantName;
  35. /**
  36. * 租户负责人
  37. */
  38. private String tenantManager;
  39. /**
  40. * 租户类型(0 试用租户 1 正式租户)
  41. */
  42. private String tenantType;
  43. /**
  44. * 租户站点域名
  45. */
  46. private String domain;
  47. /**
  48. * 租户邮箱
  49. */
  50. private String email;
  51. /**
  52. * 手机号码
  53. */
  54. private String phoneNumber;
  55. /**
  56. * 联系地址
  57. */
  58. private String address;
  59. /**
  60. * 地理位置
  61. */
  62. private String geoPosition;
  63. /**
  64. * 有效期限
  65. */
  66. private String tenantTerm;
  67. /**
  68. * 备注
  69. */
  70. private String remark;
  71. /**
  72. * 租户状态(0正常 1停用)
  73. */
  74. private String status;
  75. /**
  76. * 创建者
  77. */
  78. private String createBy;
  79. /**
  80. * 创建时间
  81. */
  82. private LocalDateTime createTime;
  83. /**
  84. * 更新者
  85. */
  86. private String updateBy;
  87. /**
  88. * 更新时间
  89. */
  90. private LocalDateTime updateTime;
  91. /**
  92. * 系统名称
  93. */
  94. private String systemName;
  95. }