StockLevelDTO.java

package com.tradecloud.dto.requestforquote;

import java.io.Serializable;

public class StockLevelDTO implements Serializable {

    private static final long serialVersionUID = 1L;

    private Long stockLevelId;
    private Long orgUnitId;
    private String finalDestinationCode;

    public StockLevelDTO(Long stockLevelId, Long orgUnitId, String finalDestinationCode) {
        this.stockLevelId = stockLevelId;
        this.orgUnitId = orgUnitId;
        this.finalDestinationCode = finalDestinationCode;
    }

    // Getters (and optionally setters, toString, etc.)
    public Long getStockLevelId() {
        return stockLevelId;
    }

    public Long getOrgUnitId() {
        return orgUnitId;
    }

    public String getFinalDestinationCode() {
        return finalDestinationCode;
    }
}