DispatchScreen.java 567 Bytes
package com.bsth.controller.dto;

public class DispatchScreen {

    private String lineCode;
    private String plate;
    private String time;

    public String getLineCode() {
        return lineCode;
    }

    public void setLineCode(String lineCode) {
        this.lineCode = lineCode;
    }

    public String getPlate() {
        return plate;
    }

    public void setPlate(String plate) {
        this.plate = plate;
    }

    public String getTime() {
        return time;
    }

    public void setTime(String time) {
        this.time = time;
    }
}