com.alibaba.otter.manager.biz.user.dal.dataobject.UserDO Maven / Gradle / Ivy
/*
* Copyright (C) 2010-2101 Alibaba Group Holding Limited.
*
* Licensed 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.alibaba.otter.manager.biz.user.dal.dataobject;
import java.io.Serializable;
import java.util.Date;
import com.alibaba.otter.shared.common.model.user.AuthorizeType;
public class UserDO implements Serializable {
private static final long serialVersionUID = 6373904824730876247L;
private Long id;
private String name;
private String password;
private String department;
private String realName;
private AuthorizeType authorizeType;
private Date gmtCreate;
private Date gmtModified;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getDepartment() {
return department;
}
public void setDepartment(String department) {
this.department = department;
}
public String getRealName() {
return realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
public Date getGmtCreate() {
return gmtCreate;
}
public void setGmtCreate(Date gmtCreate) {
this.gmtCreate = gmtCreate;
}
public Date getGmtModified() {
return gmtModified;
}
public void setGmtModified(Date gmtModified) {
this.gmtModified = gmtModified;
}
public AuthorizeType getAuthorizeType() {
return authorizeType;
}
public void setAuthorizeType(AuthorizeType authorizeType) {
this.authorizeType = authorizeType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy