public JsonResult SaveImagePushMsg(string wechatPushList, string wechatPushMoreGraphicList, string isEdit, string saveType, string countersignType)
        {
            var model = new ActionResultModel <string>();

            model.isSuccess = false;
            bool edit = bool.Parse(isEdit);

            model.isSuccess   = _dl.SaveImagePushMsg(wechatPushList, wechatPushMoreGraphicList, edit, saveType, countersignType);
            model.respnseInfo = model.isSuccess ? "1" : "0";
            return(Json(model, JsonRequestBehavior.AllowGet));
        }