public void update() {
Auth obj = (Auth) objListbox.getSelectedItem().getValue();
System.out.print("authName:" + obj.getAuthName() + ", authType:" + obj.getAuthType() + ", editable:" + obj.getEditable()
+ ", authDesc:" + obj.getAuthDescription() + ", operateBy:" + obj.getOperateBy() + ", operateAt" + obj.getOperateAt().toString());
AuthDao dao = new AuthDao();
update(dao, obj);
}