package com.sample;

import javax.xml.bind.annotation.XmlType;

/**
 * Created by konishiyuji on 2015/12/26.
 */
@XmlType(propOrder={"one", "two", "three"})
public class XyzDto {
    private String one = "1";
    private String three = "3";
    private String two = "2";

    public String getOne() {
        return one;
    }

    public void setOne(String one) {
        this.one = one;
    }

    public String getThree() {
        return three;
    }

    public void setThree(String three) {
        this.three = three;
    }

    public String getTwo() {
        return two;
    }

    public void setTwo(String two) {
        this.two = two;
    }
}
