RailwayCarriagePositionFindResponse.java 2.51 KB
/*
 * @(#)ApiLogCreateResponse.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.railway.response;

import com.xiniunet.framework.base.BaseResponse;
import com.xiniunet.railway.domain.CarriagePosition;
import com.xiniunet.railway.domain.PostPositionDetail;
import com.xiniunet.railway.domain.StationTimeTable;

import java.util.List;

/**
 *根据车厢号查询位置的响应.
 * @author xiniunet
 */
public class RailwayCarriagePositionFindResponse extends BaseResponse {
    /**
     * 时间
     */
    private String responseTime;
    /**
     *车次号
     */
    private String trainId;
    /**
     *车体号
     */
    private String trainGroupId;
    /**
     *车厢号
     */
    private String trainCarriageId;
    /**
     *车门
     */
    private String trainDoorId;
    /**
     *位置记录
     */
    private CarriagePosition positionData;
    /**
     *时刻表
     */
    private List<StationTimeTable> timeTable;

    public String getResponseTime() {
        return responseTime;
    }

    public void setResponseTime(String responseTime) {
        this.responseTime = responseTime;
    }

    public String getTrainId() {
        return trainId;
    }

    public void setTrainId(String trainId) {
        this.trainId = trainId;
    }

    public String getTrainGroupId() {
        return trainGroupId;
    }

    public void setTrainGroupId(String trainGroupId) {
        this.trainGroupId = trainGroupId;
    }

    public String getTrainCarriageId() {
        return trainCarriageId;
    }

    public void setTrainCarriageId(String trainCarriageId) {
        this.trainCarriageId = trainCarriageId;
    }

    public String getTrainDoorId() {
        return trainDoorId;
    }

    public void setTrainDoorId(String trainDoorId) {
        this.trainDoorId = trainDoorId;
    }

    public CarriagePosition getPositionData() {
        return positionData;
    }

    public void setPositionData(CarriagePosition positionData) {
        this.positionData = positionData;
    }

    public List<StationTimeTable> getTimeTable() {
        return timeTable;
    }

    public void setTimeTable(List<StationTimeTable> timeTable) {
        this.timeTable = timeTable;
    }
}