package com.connor.jd.plm.beans; public class CheckBoxPo { public Object value = null; public String text = null; public CheckBoxPo() { } public CheckBoxPo(String text, Object value) { this.value = value; this.text = text; } }