VolunteerPO.java 1.22 KB
/*
 * @(#)OrganizationPO.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.service.railway.po;

import com.xiniunet.framework.base.BasePO;

/**
 * 组织部门的数据库模型.
 * @author xiniunet
 */
public class VolunteerPO extends BasePO {

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

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

    /**
     * 描述
     * @return
     */
    private String description;

    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;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }
}