/* * Distributable under LGPL v3 license. * See terms of license at https://github.com/Yunfeng/schotel/blob/master/LICENSE */ package cn.buk.api.dto.hotel; import com.thoughtworks.xstream.annotations.XStreamAlias; import com.thoughtworks.xstream.annotations.XStreamAsAttribute; /** * User: yfdai * Date: 14-10-31 * Time: 上午9:42 */ @XStreamAlias("LengthOfStay") public class LengthOfStay { @XStreamAsAttribute @XStreamAlias("Time") private int time; public int getTime() { return time; } public void setTime(int time) { this.time = time; } }