LinesStationsPO.java 990 Bytes
/*
 * @(#)PermissionLinesPO.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 
 */
public class LinesStationsPO extends BasePO {

    /**
     * 主键,
     */
    private String id;

    /**
     * 车站名(线路_车站),
     */
    private String name;

    public String getId() {
        return id;
    }

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

    public String getName() {
        return name;
    }

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