ConsignmentCESReportOrderGroupDTO.java

package com.tradecloud.dto.consignment;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
import java.util.List;

/**
 * Created by IntelliJ IDEA.
 * User: ds
 * Date: 2014/02/26
 * Time: 2:25 PM
 * To change this template use File | Settings | File Templates.
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "Group")
public class ConsignmentCESReportOrderGroupDTO implements Serializable {

    @XmlAttribute(required = true)
    String costGroupName;

    @XmlAttribute(required = true)
    String subTotal;

    @XmlAttribute(required = true)
    String count;

    @XmlAttribute
    String costGroupTotalAddedPercentage;
    @XmlAttribute
    String elcSubTotal;

    @XmlAttribute
    String variance;

    @XmlAttribute
    String variancePercentage;

    @XmlAttribute
    private String glcROE;
    @XmlAttribute
    private String elcROE;


    @XmlElement(name = "Costline", required = true)
    private List<ConsignmentCESReportOrderGroupCellDTO> ConsignmentCESReportOrderGroupCellDTOList;

    public String getSubTotal() {
        return this.subTotal;
    }

    public void setSubTotal(String subTotal) {
        this.subTotal = subTotal;
    }

    public List<ConsignmentCESReportOrderGroupCellDTO> getConsignmentCESReportOrderGroupCellDTOList() {
        return ConsignmentCESReportOrderGroupCellDTOList;
    }

    public void setConsignmentCESReportOrderGroupCellDTOList(
            List<ConsignmentCESReportOrderGroupCellDTO> consignmentCESReportOrderGroupCellDTOList) {
        ConsignmentCESReportOrderGroupCellDTOList = consignmentCESReportOrderGroupCellDTOList;
    }

    public String getCostGroupName() {
        return costGroupName;
    }

    public void setCostGroupName(String costGroupName) {
        this.costGroupName = costGroupName;
    }

    public String getCount() {
        return count;
    }

    public void setCount(String count) {
        this.count = count;
    }

    public String getCostGroupTotalAddedPercentage() {
        return costGroupTotalAddedPercentage;
    }

    public void setCostGroupTotalAddedPercentage(String costGroupTotalAddedPercentage) {
        this.costGroupTotalAddedPercentage = costGroupTotalAddedPercentage;
    }

    public String getElcSubTotal() {
        return elcSubTotal;
    }

    public void setElcSubTotal(String elcSubTotal) {
        this.elcSubTotal = elcSubTotal;
    }

    public String getVariance() {
        return variance;
    }

    public void setVariance(String variance) {
        this.variance = variance;
    }

    public String getVariancePercentage() {
        return variancePercentage;
    }

    public void setVariancePercentage(String variancePercentage) {
        this.variancePercentage = variancePercentage;
    }

    public String getGlcROE() {
        return glcROE;
    }

    public void setGlcROE(String glcROE) {
        this.glcROE = glcROE;
    }

    public String getElcROE() {
        return elcROE;
    }

    public void setElcROE(String elcROE) {
        this.elcROE = elcROE;
    }
}