/* * Copyright 2002-2012 the original author or authors. * * 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.github.yingzhuo.mycar.domain.plus; import java.io.Serializable; public class UserSnapshot implements Serializable { private static final long serialVersionUID = -565550687674117498L; private Integer id; private String nickname; private String email; private Gender gender; public UserSnapshot() { super(); } public UserSnapshot(Integer id, String nickname, String email, Gender gender) { super(); this.id = id; this.nickname = nickname; this.email = email; this.gender = gender; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getNickname() { return nickname; } public void setNickname(String nickname) { this.nickname = nickname; } public Gender getGender() { return gender; } public void setGender(Gender gender) { this.gender = gender; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } }