public ActionResult PostEmergencyEvent(int appid, string emergencyText, string cities, string provinces,
                                               int emergencyId = 0, bool isCopy = false)
        {
            if (string.IsNullOrEmpty(ViewBag.LillyId))
            {
                return(Redirect("/notauthed.html"));
            }

            // 将前台传过来的数据保存起来
            // 1. 根据City从后台拉取员工信息
            //var employees = new List<LocalSADEntity>();

            //foreach (var city in cities)
            //{
            //    employees.AddRange(_localSADService.GetEmployeeByLocation(city));
            //}

            // TODO: 将所有员工信息保存到数据库表中

            var configedAppid =
                CommonService.lstSysConfig.FirstOrDefault(
                    x => x.ConfigName.Equals(HseAppIdKey, StringComparison.OrdinalIgnoreCase));

            if (configedAppid == null)
            {
                _Logger.Error("Have not config appid for hse.");
            }

            appid = configedAppid == null ? 0 : int.Parse(configedAppid.ConfigValue);

            _hseService.SendHseMessage(cities, emergencyText, ViewBag.LillyId, appid, provinces, emergencyId, isCopy);

            return(Json("OK"));
        }