Volunteer.java 1012 Bytes
/*
 * @(#)UserAttendance.java
 *
 * Copyright (c) 2014-2017   版权所有
 * 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.domain;

import com.xiniunet.framework.base.BaseDomain;

import java.sql.Timestamp;

/**
 * 用户实时位置实体对象.

 * @author
 */
public class Volunteer extends BaseDomain {

    /**
     * 志愿者代码
     */
    private String code;

    /**
     * 志愿者组织名称
     */
    private String name;

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getName() {
        return name;
    }

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