RailwayPartyBranchRankNumberPO.java 1.25 KB
/*
 * @(#)EscortAttendancePO.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;

import java.util.Date;

/**
 * 护航员考勤的数据库模型.
 * @author xiniunet
 */
public class RailwayPartyBranchRankNumberPO extends BasePO {

    /**
     * 排名
     */
    private String number;
    /**
     * 党支部名字
     */
    private String name;

    /**
     *党支部人数
     * @return
     */
    private Long attribute;

    public String getNumber() {
        return number;
    }

    public void setNumber(String number) {
        this.number = number;
    }

    public String getName() {
        return name;
    }

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

    public Long getAttribute() {
        return attribute;
    }

    public void setAttribute(Long attribute) {
        this.attribute = attribute;
    }
}