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