public ActionResult Update(ZhuZhaiJiChuXinXi entity)
        {
            if (ModelState.IsValid)
            {
                entity.YunXuPingGu      = GetCheckBoxValue(entity.YunXuPingGu);
                entity.KeJian           = GetCheckBoxValue(entity.KeJian);
                entity.OrgNamePath      = GetOrganizationNamePath();
                entity.LastModifiedBy   = GetCurrentUserName();
                entity.LastModifiedDate = DateTime.Now;

                _service.UpdateZhuZhaiJiChuXinXi(entity);
                _service.Save();

                var window = this.GetCmp <Window>(ExtHelper.windowZhuZhaiJiChuXinXi.ToString());
                window.Hide();
                this.GetCmp <Store>(ExtHelper.storeZhuZhaiJiChuXinXi.ToString()).Reload();
                return(this.Direct());
            }

            return(this.Direct());
        }