com.haoxuer.discover.user.data.entity.UserInfo Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package com.haoxuer.discover.user.data.entity;
import com.haoxuer.discover.config.data.entity.User;
import com.haoxuer.discover.data.enums.StoreState;
import javax.persistence.*;
import java.util.HashSet;
import java.util.Set;
/**
* 用户
*
* @author ada
*/
@Entity
@Table(name = "user_info")
public class UserInfo extends AbstractUser {
private StoreState storeState;
public static UserInfo fromId(Long id) {
UserInfo result = new UserInfo();
result.setId(id);
return result;
}
public User simple() {
User result = new User();
result.setId(this.getId());
return result;
}
public User user() {
User result = new User();
result.setId(this.getId());
result.setName(this.getName());
result.setAvatar(this.getAvatar());
result.setPhone(this.getPhone());
result.setLoginSize(this.getLoginSize());
result.setAddDate(this.getAddDate());
result.setLastDate(this.getLastDate());
return result;
}
@ManyToMany(fetch = FetchType.EAGER)
@JoinTable(name = "user_role_links", joinColumns = {@JoinColumn(name = "user_id")})
private Set roles = new HashSet();
public Set getRoles() {
return roles;
}
public void setRoles(Set roles) {
this.roles = roles;
}
public StoreState getStoreState() {
return storeState;
}
public void setStoreState(StoreState storeState) {
this.storeState = storeState;
}
}