PlaceOfCustomsSearch.java

package com.tradecloud.dto.base;

import com.tradecloud.domain.place.PlaceOfCustom;

public class PlaceOfCustomsSearch extends StaticDataSearch {

    PlaceOfCustom.Type placeOfCustomType;

    public PlaceOfCustom.Type getPlaceOfCustomType() {
        return placeOfCustomType;
    }

    public void setPlaceOfCustomType(PlaceOfCustom.Type placeOfCustomType) {
        this.placeOfCustomType = placeOfCustomType;
    }
}