/// <summary> /// 返回错误消息 /// </summary> /// <returns></returns> public static AjaxReponseBase Error() { return(AjaxReponseBase.Error(YouGeSystemConst.OPERATE_FAIL)); }
/// <summary> /// 返回错误消息 /// </summary> /// <param name="msg"></param> /// <returns></returns> public static AjaxReponseBase Error(string msg) { return(AjaxReponseBase.Error(msg, null)); }