java反射修改对象属性值
Field field = this.getClass().getDeclaredField("on");
field.setAccessible(true);
field.set(this, true);