UserSpaceView.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. package com.uas.sso.entity;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * @author wangmh
  6. * @create 2018-01-24 14:34
  7. * @desc 企业视图
  8. **/
  9. public class UserSpaceView implements Serializable {
  10. /**
  11. *
  12. */
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * 企业uu号
  16. */
  17. private Long spaceUU;
  18. /**
  19. * 企业名称
  20. */
  21. private String spaceName;
  22. /**
  23. * 法定代表人
  24. */
  25. private String corporation;
  26. /**
  27. * 注册日期
  28. */
  29. private Long registerDate;
  30. /**
  31. * 管理员
  32. */
  33. private UserView admin;
  34. /**
  35. * 管理员uu号
  36. */
  37. private Long adminUU;
  38. /**
  39. * 营业执照号
  40. */
  41. private String businessCode;
  42. /**
  43. * 营业执照
  44. */
  45. private String businessCodeImage;
  46. /**
  47. * 注册地址
  48. */
  49. private String regAddress;
  50. /**
  51. * 企业信息认证状态
  52. */
  53. private Short validCode;
  54. /**
  55. * logo图片
  56. */
  57. private String logoImage;
  58. /**
  59. * 企业联系电话
  60. */
  61. private String telephone;
  62. /**
  63. * 行业
  64. */
  65. private String profession;
  66. /**
  67. * 经营范围标签,逗号分隔
  68. */
  69. private String tags;
  70. /**
  71. * 企业注册区域
  72. */
  73. private String area;
  74. public Long getSpaceUU() {
  75. return spaceUU;
  76. }
  77. public void setSpaceUU(Long spaceUU) {
  78. this.spaceUU = spaceUU;
  79. }
  80. public String getSpaceName() {
  81. return spaceName;
  82. }
  83. public void setSpaceName(String spaceName) {
  84. this.spaceName = spaceName;
  85. }
  86. public String getCorporation() {
  87. return corporation;
  88. }
  89. public void setCorporation(String corporation) {
  90. this.corporation = corporation;
  91. }
  92. public Long getRegisterDate() {
  93. return registerDate;
  94. }
  95. public void setRegisterDate(Long registerDate) {
  96. this.registerDate = registerDate;
  97. }
  98. public UserView getAdmin() {
  99. return admin;
  100. }
  101. public void setAdmin(UserView admin) {
  102. this.admin = admin;
  103. }
  104. public Long getAdminUU() {
  105. return adminUU;
  106. }
  107. public void setAdminUU(Long adminUU) {
  108. this.adminUU = adminUU;
  109. }
  110. public String getBusinessCode() {
  111. return businessCode;
  112. }
  113. public void setBusinessCode(String businessCode) {
  114. this.businessCode = businessCode;
  115. }
  116. public String getBusinessCodeImage() {
  117. return businessCodeImage;
  118. }
  119. public void setBusinessCodeImage(String businessCodeImage) {
  120. this.businessCodeImage = businessCodeImage;
  121. }
  122. public String getRegAddress() {
  123. return regAddress;
  124. }
  125. public void setRegAddress(String regAddress) {
  126. this.regAddress = regAddress;
  127. }
  128. public Short getValidCode() {
  129. return validCode;
  130. }
  131. public void setValidCode(Short validCode) {
  132. this.validCode = validCode;
  133. }
  134. public String getLogoImage() {
  135. return logoImage;
  136. }
  137. public void setLogoImage(String logoImage) {
  138. this.logoImage = logoImage;
  139. }
  140. public String getTelephone() {
  141. return telephone;
  142. }
  143. public void setTelephone(String telephone) {
  144. this.telephone = telephone;
  145. }
  146. public String getProfession() {
  147. return profession;
  148. }
  149. public void setProfession(String profession) {
  150. this.profession = profession;
  151. }
  152. public String getTags() {
  153. return tags;
  154. }
  155. public void setTags(String tags) {
  156. this.tags = tags;
  157. }
  158. public String getArea() {
  159. return area;
  160. }
  161. public void setArea(String area) {
  162. this.area = area;
  163. }
  164. }