namespace Infrastructure.MVC { /// /// 前端框架ajax错误返回 /// public class UiResponse { public string statusCode { get; set; } public string message { get; set; } public string tabid { get; set; } public bool closeCurrent { get; set; } public string forward { get; set; } public string forwardConfirm { get; set; } public UiResponse() { statusCode = "200"; message = "操作成功"; tabid = ""; closeCurrent = false; forward = ""; forwardConfirm = ""; } } }