UserCreateRequest.java 3.81 KB
/*
 * @(#)UserCreateRequest.java
 *
 * Copyright (c) 2014-2017  xiniunet 版权所有
 * xiniunet. All rights reserved.
 *
 * This software is the confidential and proprietary
 * information of  xiniunet.
 * ("Confidential Information"). You shall not disclose
 * such Confidential Information and shall use it only
 * in accordance with the terms of the contract agreement
 * you entered into with xiniunet.
 */
package com.xiniunet.railway.request;

import com.xiniunet.framework.base.BaseRequest;
/**
 * 创建用户的请求.
 * @author xiniunet
 */
public class UserCreateRequest extends BaseRequest {
    /**
     * id
     */
    private Long id;
    /**
     * 是否是党员
     * 
     */
    
    private Boolean isPartyMember;
    
    /**
     * 组织ID
     * 
     */
    
    private Long partyId;
    /**
     * 公司id
     */
    private Long companyId;

    /**
     * 性别
     */
    private String gender;

    /**
     * 年龄
     */
    private int age;

    /**
     * 学历
     */
    private String education;
    /**
     * 职业
     */
    private String occupation;
    /**
     * 总护航次数
     */
    private Long escortCount;

    /**
     * 总护航时间
     */
    private Long escortTime;

    /**
     * 员工编号
     */
    private Boolean isEmployee;
    /**
     * 员工编号
     */
    private String employeeNumber;

    public Boolean getIsEmployee() {
        return isEmployee;
    }

    public void setIsEmployee(Boolean employee) {
        isEmployee = employee;
    }

    public String getEmployeeNumber() {
        return employeeNumber;
    }

    public void setEmployeeNumber(String employeeNumber) {
        this.employeeNumber = employeeNumber;
    }

    public Long getEscortCount() {
        return escortCount;
    }

    public void setEscortCount(Long escortCount) {
        this.escortCount = escortCount;
    }

    public Long getEscortTime() {
        return escortTime;
    }

    public void setEscortTime(Long escortTime) {
        this.escortTime = escortTime;
    }

    /**
     * 用户的头像文件ID
     */
    private Long avatarId;

    /**
     * 用户名称,
     */
    private String name;

    /**
     * 昵称/别名,
     */
    private String nickName;

    public Long getAvatarId() {
        return avatarId;
    }

    public void setAvatarId(Long avatarId) {
        this.avatarId = avatarId;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getNickName() {
        return nickName;
    }

    public void setNickName(String nickName) {
        this.nickName = nickName;
    }

    public String getGender() {
        return gender;
    }

    public void setGender(String gender) {
        this.gender = gender;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public String getEducation() {
        return education;
    }

    public void setEducation(String education) {
        this.education = education;
    }

    public String getOccupation() {
        return occupation;
    }

    public void setOccupation(String occupation) {
        this.occupation = occupation;
    }

    public Long getCompanyId() {
        return companyId;
    }

    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public Boolean getIsPartyMember() {
        return isPartyMember;
    }

    public void setIsPartyMember(Boolean isPartyMember) {
        this.isPartyMember = isPartyMember;
    }
    
    public Long getPartyId() {
        return partyId;
    }

    public void setPartyId(Long partyId) {
        this.partyId = partyId;
    }
    
}