TenantInfo.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. package com.keao.edu.user.entity;
  2. import com.keao.edu.auth.api.entity.SysUser;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import org.apache.commons.lang3.builder.ToStringBuilder;
  5. /**
  6. * 对应数据库表(tenant_info):
  7. */
  8. public class TenantInfo {
  9. /** */
  10. private Integer id;
  11. /** */
  12. private String name;
  13. /** */
  14. private String address;
  15. @ApiModelProperty(value = "管理员名",required = false)
  16. private String domainName;
  17. private String logoUrl;
  18. @ApiModelProperty(value = "机构名称",required = false)
  19. private String contactName;
  20. @ApiModelProperty(value = "机构手机",required = false)
  21. private String contactPhone;
  22. /** */
  23. private java.util.Date createTime;
  24. /** */
  25. private java.util.Date updateTime;
  26. @ApiModelProperty(value = "用户信息",required = false)
  27. private SysUser sysUser;
  28. public SysUser getSysUser() {
  29. return sysUser;
  30. }
  31. public void setSysUser(SysUser sysUser) {
  32. this.sysUser = sysUser;
  33. }
  34. public void setId(Integer id){
  35. this.id = id;
  36. }
  37. public Integer getId(){
  38. return this.id;
  39. }
  40. public void setName(String name){
  41. this.name = name;
  42. }
  43. public String getName(){
  44. return this.name;
  45. }
  46. public void setAddress(String address){
  47. this.address = address;
  48. }
  49. public String getAddress(){
  50. return this.address;
  51. }
  52. public void setDomainName(String domainName){
  53. this.domainName = domainName;
  54. }
  55. public String getDomainName(){
  56. return this.domainName;
  57. }
  58. public void setLogoUrl(String logoUrl){
  59. this.logoUrl = logoUrl;
  60. }
  61. public String getLogoUrl(){
  62. return this.logoUrl;
  63. }
  64. public void setContactName(String contactName){
  65. this.contactName = contactName;
  66. }
  67. public String getContactName(){
  68. return this.contactName;
  69. }
  70. public void setContactPhone(String contactPhone){
  71. this.contactPhone = contactPhone;
  72. }
  73. public String getContactPhone(){
  74. return this.contactPhone;
  75. }
  76. public void setCreateTime(java.util.Date createTime){
  77. this.createTime = createTime;
  78. }
  79. public java.util.Date getCreateTime(){
  80. return this.createTime;
  81. }
  82. public void setUpdateTime(java.util.Date updateTime){
  83. this.updateTime = updateTime;
  84. }
  85. public java.util.Date getUpdateTime(){
  86. return this.updateTime;
  87. }
  88. @Override
  89. public String toString() {
  90. return ToStringBuilder.reflectionToString(this);
  91. }
  92. }