/** * <p>Title: FastJsonSonTestVO.java</p> * <p>Description: FastJsonSonTestVO</p> * <p>Package: com.alibaba.json.bvt.support.spring.mock.entity</p> * <p>Company: www.github.com/DarkPhoenixs</p> * <p>Copyright: Dark Phoenixs (Open-Source Organization) 2016</p> */ package com.alibaba.json.bvt.support.spring.mock.entity; /** * <p>Title: FastJsonSonTestVO</p> * <p>Description: </p> * * @since 2016年4月20日 * @author Victor.Zxy * @version 1.0 */ public class FastJsonSonTestVO { private String name; /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } }