/* * Copyright 2012-2013 The Haohui Network Corporation */ package com.haohui.baidamei.client.web.json.template; /** * @project baidamei * @author cevencheng <cevencheng@gmail.com> * @create 2012-11-16 下午4:15:29 */ public class Bean { private String id; private String value; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public Bean(String id, String value) { super(); this.id = id; this.value = value; } }