/* * Distributable under LGPL v3 license. * See terms of license at https://github.com/Yunfeng/schotel/blob/master/LICENSE */ package cn.buk.hotel.dto; import org.dom4j.Document; import java.util.ArrayList; import java.util.List; /** * Created by william on 2014-12-5. */ public class DocumentDto { private Document document; private int periodId; private List<String> hotelCodes = new ArrayList<String>(); public Document getDocument() { return document; } public void setDocument(Document document) { this.document = document; } public int getPeriodId() { return periodId; } public void setPeriodId(int periodId) { this.periodId = periodId; } public List<String> getHotelCodes() { return hotelCodes; } public void setHotelCodes(List<String> hotelCodes) { this.hotelCodes = hotelCodes; } }