/* * 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; /** * User: william * Date: 14-10-28 * Time: 下午11:05 */ public class Paragraph { @XStreamAlias("Text") private String url; public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } }